summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/arith-strict-relaxed.smt2
blob: b1906423f74edb8ce640862824e90a435db007ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE:
; EXPECT: unsat
(set-logic QF_LRA)

(declare-fun x () Real)
(declare-fun y () Real)
(declare-fun z () Real)

; Both strict and non-strict inequalities.
(assert (< y 0))
(assert (>= y x))
(assert (>= y (- x)))

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