summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/sin-sym2.smt2
blob: 2e5d4eac2ce0c1577e434ae5ba6e1791f8620090 (plain)
1
2
3
4
5
6
7
8
9
10
; COMMAND-LINE: --nl-ext --nl-ext-tplanes
; EXPECT: unsat
(set-logic QF_UFNRA)
(set-info :status unsat)
(declare-fun x () Real)
(declare-fun y () Real)
(assert (and (< 0.0 x) (< x 1.0) (< 0.0 y) (< y 1.0)))
(assert (= (+ (sin x) (sin y)) 0.0))
(assert (not (= (+ x y) 0.0)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback