summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bug216.smt2
blob: 53f4fac9c1374f7bc4d3ab582b7bd7b7f71b9b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; COMMAND-LINE: --incremental
; EXPECT: sat
; EXPECT: unsat

(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