diff options
author | mikebarnett <unknown> | 2009-07-15 21:03:41 +0000 |
---|---|---|
committer | mikebarnett <unknown> | 2009-07-15 21:03:41 +0000 |
commit | ce1c2de044c91624370411e23acab13b0381949b (patch) | |
tree | 592539996fe08050ead5ee210c973801611dde40 /Test/aitest1/Linear1.bpl |
Initial set of files.
Diffstat (limited to 'Test/aitest1/Linear1.bpl')
-rw-r--r-- | Test/aitest1/Linear1.bpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Test/aitest1/Linear1.bpl b/Test/aitest1/Linear1.bpl new file mode 100644 index 00000000..0cbb4a07 --- /dev/null +++ b/Test/aitest1/Linear1.bpl @@ -0,0 +1,11 @@ +// Simple test file for checking the inference of linear constraints.
+
+var x: int;
+var y: int;
+
+procedure p()
+{
+ start:
+ assume x*x == y; // not a linear condition
+ return;
+}
|