summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/zero-subset.smt2
blob: a8ce65b02b6eea413fd3d678452cb4349bfd51e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; 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)
(declare-fun e () Real)

(assert (= (* a b c d) 0))

(assert (not (= (* a b c d e) 0)))

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