summaryrefslogtreecommitdiff
path: root/test/regress/regress0/push-pop/bug216.smt2
blob: 78e0f716ce4bf4db0f2d7201f0403a81fa18b59a (plain)
1
2
3
4
5
6
7
8
(set-logic QF_UF)
(declare-fun x () Bool)
(declare-fun y () Bool)
(assert (=> x y))
(check-sat) ; returns sat
(assert (=> y x))
(assert (and x (not y)))
(check-sat) ; returns sat --> ERROR
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback