summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug339.smt2
blob: bb03cf9b17044ce8d53444296a115b426422e191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(set-logic QF_LRA)
(set-info :status sat)

(declare-fun x () Real)
(declare-fun P () Bool)

(assert
 (let ((y (ite P 1 x)))
   (and (not (= y 1))
        (> y 0)
        (<= y 1))))

(check-sat)

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