source: CIVL/examples/loop_invariants/loop_assigns_given/arrayZeroes2d_2columns_preserve-bad_assert.cvl

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 563 bytes
Line 
1#include<assert.h>
2
3#pragma CIVL ACSL
4
5$input int N;
6$assume(N > 10);
7int a[N][N];
8
9void arrayZeroes(int n) {
10 int i;
11
12 /*@ loop invariant 0 <= i && i <= n;
13 @ loop invariant \forall int t; 0<=t && t<i ==> (a[t][1] == 0 && a[t][5] == 0);
14 @ loop assigns a[0 .. n-1][1], a[0 .. n-1][5], i;
15 @*/
16 for (i = 0; i < n; i++) {
17 a[i][1] = 0;
18 a[i][5] = 0;
19 }
20 $assert(i == n => a[5][0] == 0);
21}
22
23int main() {
24 $havoc(&a);
25 a[5][0] = 1;
26 a[5][7] = 1;
27 arrayZeroes(N);
28 $assert($forall (int i : 0 .. N-1) a[i][1] == 0 && a[i][5] == 0);
29}
Note: See TracBrowser for help on using the repository browser.