diff options
author | akashlal <unknown> | 2013-05-27 12:32:24 +0530 |
---|---|---|
committer | akashlal <unknown> | 2013-05-27 12:32:24 +0530 |
commit | 0b5af50545d93128256acabcd09ec09996f495f6 (patch) | |
tree | 77b193a330e4a09fa47c19959fa06c620c973984 /Test/AbsHoudini/quant3.bpl | |
parent | 21f72bdf46f12d214ac1f58bcc1041de2827ff40 (diff) |
AbsHoudini: Added support for quantifiers
Diffstat (limited to 'Test/AbsHoudini/quant3.bpl')
-rw-r--r-- | Test/AbsHoudini/quant3.bpl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Test/AbsHoudini/quant3.bpl b/Test/AbsHoudini/quant3.bpl new file mode 100644 index 00000000..cc0ef79e --- /dev/null +++ b/Test/AbsHoudini/quant3.bpl @@ -0,0 +1,7 @@ +function {:existential true} {:absdomain "Intervals"} b1(x: int) : bool;
+
+procedure foo ()
+{
+ assert (exists x: int :: (0 <= x && x <= 2) && b1(x));
+}
+
|