summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/exp_monotone.smt2
blob: a1360dc220442c07b969cb509850fa9e4813ad4e (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_UFNRA)
(set-info :status unsat)
(declare-fun x () Real)
(declare-fun y () Real)
(declare-fun z () Real)
(declare-fun w () Real)

(assert (< x w))

(assert (> (exp x) (exp y)))
(assert (> (exp y) (exp z)))
(assert (> (exp z) (exp w)))


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