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
Cannot have location_invariant right before loop because we have no non-loop-head node there. This meant our existing witness tests had to be changed to loop_invariants which make more sense. But our inability to have location invariants before loops could also turn out to be problematic.
inti=0;
// we have no node here to attach i == 0 towhile (i<10)
i++;
The text was updated successfully, but these errors were encountered:
Leftover from #1372:
Cannot have
location_invariant
right before loop because we have no non-loop-head node there. This meant our existing witness tests had to be changed toloop_invariant
s which make more sense. But our inability to have location invariants before loops could also turn out to be problematic.The text was updated successfully, but these errors were encountered: