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
For example, the following program,the vtrace1 I added correct?
int main ()
{
int a [100000];
int b [100000];
int res [100000];
int i = 0;int x ;
while ( i < 100000)
{
vtrace1(res,a,b,i);
res [ i ] = a [ i ] + b [ i ];
i ++;
}
//__VERIFIER_assert ( __forall (x , (!(( x < i ) && (x >= 0)) || ( res [ x ] == a [ x ] + b [ x ])) ));
return 0;
}
The text was updated successfully, but these errors were encountered:
For example, the following program,the
vtrace1
I added correct?The text was updated successfully, but these errors were encountered: