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