summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/arith-strict-relaxed.smt2
blob: fe17aa536056f30cd88f8ad0e0b7c43f6839c61b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --no-check-unsat-cores
; 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