source:
CIVL/mods/dev.civl.com/examples/experimental/slowSimplification.cvl@
bc0fbae
| Last change on this file since bc0fbae was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 207 bytes | |
| Rev | Line | |
|---|---|---|
| [3145e92] | 1 | $input int a[5][5]; |
| 2 | $input int x, y; | |
| 3 | $assume(0 <= x < 5 && 0 <= y < 5); | |
| 4 | int main() { | |
| 5 | ||
| 6 | $assume($forall (int i | i == 0 || i == x) | |
| 7 | ($forall (int j | j == 0 || j == y) a[i][j] == 0) | |
| 8 | ); | |
| 9 | ||
| 10 | return 0; | |
| 11 | } |
Note:
See TracBrowser
for help on using the repository browser.
