summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/arith-strict.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/arith/arith-strict.smt2')
-rw-r--r--test/regress/regress0/arith/arith-strict.smt213
1 files changed, 13 insertions, 0 deletions
diff --git a/test/regress/regress0/arith/arith-strict.smt2 b/test/regress/regress0/arith/arith-strict.smt2
new file mode 100644
index 000000000..969cfd0bb
--- /dev/null
+++ b/test/regress/regress0/arith/arith-strict.smt2
@@ -0,0 +1,13 @@
+; COMMAND-LINE: --no-check-unsat-cores --no-check-proofs
+; EXPECT: unsat
+(set-logic QF_LRA)
+
+(declare-fun x () Real)
+(declare-fun y () Real)
+(declare-fun z () Real)
+
+(assert (< y 0))
+(assert (> y x))
+(assert (> y (- x)))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback