summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/simple-mono-unsat.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/nl/simple-mono-unsat.smt2')
-rw-r--r--test/regress/regress1/nl/simple-mono-unsat.smt218
1 files changed, 18 insertions, 0 deletions
diff --git a/test/regress/regress1/nl/simple-mono-unsat.smt2 b/test/regress/regress1/nl/simple-mono-unsat.smt2
new file mode 100644
index 000000000..b82b7ad7c
--- /dev/null
+++ b/test/regress/regress1/nl/simple-mono-unsat.smt2
@@ -0,0 +1,18 @@
+; COMMAND-LINE: --nl-ext
+; EXPECT: unsat
+(set-logic QF_NRA)
+(set-info :status unsat)
+
+(declare-fun a () Real)
+(declare-fun b () Real)
+(declare-fun c () Real)
+(declare-fun d () Real)
+
+(assert (or (= a 4) (= a 3)))
+
+(assert (> b 0))
+(assert (> c 0))
+
+(assert (< (* a b c d d) 0))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback