source: CIVL/examples/languageFeatures/quantifiers.cvl@ 57970ad

1.23 2.0 main test-branch
Last change on this file since 57970ad was 09b9231b, checked in by Manchun Zheng <zmanchun@…>, 12 years ago

implemented assert statements with printing functionality; since $assert is redefined as a function in civlc.h, the translation in FunctionTranslator is changed and all examples using $assert is updated accordingly; translates assert() which is defined in assert.h into an assert statement; fixed warnings in mpi executor.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@536 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 409 bytes
RevLine 
[36b5ada]1/* Commandline execution:
2 * civl verify quantifiers.cvl
3 * */
[7a41dce]4#include<civlc.h>
5$input double b[10];
6
7void main() {
8 int a[5];
9
10 for (int i = 0; i < 5; i++) {
11 a[i] = i;
12 }
[09b9231b]13
14 $assert($forall {int i | i >= 0 && i < 5} a[i] >= 0);
15 $assert($exists {int k | k >= 0 && k < 5} a[k] > 3);
[7a41dce]16 $assume $forall {int j | j >= 0 && j < 10} b[j] >= 2;
[09b9231b]17 $assert($forall {int m | m >= 3 && m <= 5} b[m] > 1);
[7a41dce]18}
Note: See TracBrowser for help on using the repository browser.