summaryrefslogtreecommitdiff
path: root/test/regress/regress0/cvc3-bug15.cvc
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/cvc3-bug15.cvc')
-rw-r--r--test/regress/regress0/cvc3-bug15.cvc10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/regress/regress0/cvc3-bug15.cvc b/test/regress/regress0/cvc3-bug15.cvc
new file mode 100644
index 000000000..aaebeebd6
--- /dev/null
+++ b/test/regress/regress0/cvc3-bug15.cvc
@@ -0,0 +1,10 @@
+%% This test borrowed from CVC3 regressions, bug15.cvc
+% EXPECT: VALID
+x : REAL;
+y : REAL;
+f : REAL -> REAL;
+ASSERT ((x > y) => f(x) > f (y));
+ASSERT (x = 3);
+ASSERT (y = 2);
+QUERY(f(x) > f (y));
+% EXIT: 20
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback