1.23
2.0
main
test-branch
| Rev | Line | |
|---|
| [36b5ada] | 1 | /* Commandline execution:
|
|---|
| 2 | * civl verify quantifiers.cvl
|
|---|
| 3 | * */
|
|---|
| [7a41dce] | 4 | #include<civlc.h>
|
|---|
| 5 | $input double b[10];
|
|---|
| 6 |
|
|---|
| 7 | void main() {
|
|---|
| 8 | int a[5];
|
|---|
| 9 |
|
|---|
| 10 | for (int i = 0; i < 5; i++) {
|
|---|
| 11 | a[i] = i;
|
|---|
| 12 | }
|
|---|
| 13 | $assert $forall {int i | i >= 0 && i < 5} a[i] >= 0;
|
|---|
| 14 | $assert $exists {int k | k >= 0 && k < 5} a[k] > 3;
|
|---|
| 15 | $assume $forall {int j | j >= 0 && j < 10} b[j] >= 2;
|
|---|
| 16 | $assert $forall {int m | m >= 3 && m <= 5} b[m] > 1;
|
|---|
| 17 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.