summaryrefslogtreecommitdiff
path: root/test/regress/regress0/nl/simple-mono-unsat.smt2
blob: b82b7ad7c60bca7c206092530bd812b19affc039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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