You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a technical level we can just map through the error, I guess in the blame of fold/unfold/unfolding
We should consider whether the behaviour of Scale should change - my current interpretation of this is that e.g. [none](a == 1) is equivalent to true, not a == 1, and not disallowed as a well-formedness condition.
e.g. I think in parallel blocks we encode stuff as [1 / N]predicates() instead of N > 0 ==> [1 / N]predicates(), so that should then also change. this is nonsense
An alternative is to simply always encode a branch, i.e. unfold [p]x() -> if(p > 0) unfold [p](x)
The text was updated successfully, but these errors were encountered:
See also:
We should consider what to do with this:
fold
/unfold
/unfolding
Scale
should change - my current interpretation of this is that e.g.[none](a == 1)
is equivalent totrue
, nota == 1
, and not disallowed as a well-formedness condition.e.g. I think in parallel blocks we encode stuff asthis is nonsense[1 / N]predicates()
instead ofN > 0 ==> [1 / N]predicates()
, so that should then also change.unfold [p]x()
->if(p > 0) unfold [p](x)
The text was updated successfully, but these errors were encountered: