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