I don't know if it's the desired behavior, but if I have a rule like:
$rule pointwise(MyVar{n,it}<-Var1{n},Var2{n}),conststraint(pos) {
}
Loci wants to treat this as a build rule, so you have to add UNIVERSE{n,it} as a constraint to avoid issues. I see in rule.cc on line 1008 there's a section that checks if the source time is before the target time, the rule is assigned the BUILD attribute.
Would something like this prevent that? Or break everything?
if(target_asgn) {
rule_class = BUILD ;
}else {
rule_class = TIME_SPECIFIC ;
}
I don't know if it's the desired behavior, but if I have a rule like:
Loci wants to treat this as a build rule, so you have to add
UNIVERSE{n,it}as a constraint to avoid issues. I see inrule.ccon line 1008 there's a section that checks if the source time is before the target time, the rule is assigned theBUILDattribute.Would something like this prevent that? Or break everything?