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
[---------------------------------------------------------------------
5 requires (\forall int _0; 0 <= _0 && _0 < _n_vis; 0 <= ant1[_0]);
---------------------------------------------------------------------]
6 requires _n_vis == 230930;
7 @*/
--------------------------------------
The offset to the pointer may be outside the bounds of the allocated memory area that the pointer is in. (https://utwente.nl/vercors#ptrBlock)
This is because in (I think quantifier rewrite step) _n_vis is replaced by 230930 on line 4. But this is not valid, since the information of _n_vis == 230930 is only available from line 5 and onward.
I'll investigate where this happens.
The text was updated successfully, but these errors were encountered:
This program does not verify, it gives the error:
This is because in (I think quantifier rewrite step)
_n_vis
is replaced by230930
on line 4. But this is not valid, since the information of_n_vis == 230930
is only available from line 5 and onward.I'll investigate where this happens.
The text was updated successfully, but these errors were encountered: