summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/approx-sqrt.smt2
blob: 4ff659bc18d8ef24593b7d83598755b5d563917a (plain)
1
2
3
4
5
6
7
8
9
10
11
; COMMAND-LINE: --no-check-models
; EXPECT: sat
(set-logic QF_NRA)
(set-info :status sat)
(declare-fun x () Real)
(assert (= (* x x) 2))
(assert (> x 0))
(assert (> (+ (* x x) (* (- 2.8) x)) (- 1.9598)))
(assert (> (+ (* x x) (* (- 2.8284271247) x)) (- 1.9999999999999)))
(assert (> (+ (* x x) (* (- 2.82842712475) x)) (- 2.00000001)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback