summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/approx-sqrt-unsat.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/nl/approx-sqrt-unsat.smt2')
-rw-r--r--test/regress/regress1/nl/approx-sqrt-unsat.smt211
1 files changed, 11 insertions, 0 deletions
diff --git a/test/regress/regress1/nl/approx-sqrt-unsat.smt2 b/test/regress/regress1/nl/approx-sqrt-unsat.smt2
new file mode 100644
index 000000000..af3eda65a
--- /dev/null
+++ b/test/regress/regress1/nl/approx-sqrt-unsat.smt2
@@ -0,0 +1,11 @@
+(set-logic QF_NRA)
+(set-info :status unsat)
+(declare-fun x () Real)
+(assert (= (* x x) 2))
+(assert (> x 0))
+(assert (or
+(> (+ (* x x) (* (- 2.8) x)) (- 1.95))
+(> (+ (* x x) (* (- 2.8284271247) x)) (- 1.999999))
+(> (+ (* x x) (* (- 2.82842712475) x)) (- 2.0000000000000000000000000001))
+))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback