summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/ones.smt2
blob: be06912d0d670ac232c286898ac01fffa2751fc7 (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 (>= a 1))
(assert (>= b 1))
(assert (>= c 1))
(assert (>= d 1))
(assert (or (= a 1) (= b 1) (= c 1) (= d 1)))

(assert (< (* a b c d) 1))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback