summaryrefslogtreecommitdiff
path: root/test/regress/regress0/nl/simple-mono.smt2
blob: 3d4adad2858f801e64b3ae0c77bbc55dd3bda107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; COMMAND-LINE: --nl-ext
; EXPECT: unsat
(set-logic QF_NRA)
(set-info :status unsat)
(declare-fun x () Real)
(declare-fun y () Real)
(declare-fun z () Real)


(assert (> z 0))
(assert (> x y))

;(assert (not (> (* x z) (* y z))))
(assert (< (* x z) (* y z)))


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