source:
CIVL/examples/loop_invariants/loop_assigns_gen/arrayZeroes1d.cvl@
afc300c
| Last change on this file since afc300c was 2fa0abd, checked in by , 8 years ago | |
|---|---|
|
|
| File size: 417 bytes | |
| Line | |
|---|---|
| 1 | #include<assert.h> |
| 2 | |
| 3 | #pragma CIVL ACSL |
| 4 | |
| 5 | $input int N; |
| 6 | $assume(N > 0); |
| 7 | |
| 8 | void arrayZeroes(int *a, int n) { |
| 9 | int i; |
| 10 | |
| 11 | /*@ loop invariant 0 <= i && i <=n; |
| 12 | @ loop invariant \forall int j; 0<=j && j<i ==> |
| 13 | @ a[j] == 0; |
| 14 | @*/ |
| 15 | for (i = 0; i < n; i++) |
| 16 | a[i] = 0; |
| 17 | } |
| 18 | |
| 19 | int main() { |
| 20 | int a[N]; |
| 21 | |
| 22 | $havoc(&a); |
| 23 | arrayZeroes(a, N); |
| 24 | $assert($forall (int i : 0 .. N-1) a[i] == 0); |
| 25 | } |
Note:
See TracBrowser
for help on using the repository browser.
