summaryrefslogtreecommitdiff
path: root/test/regress/regress0/issue6738.smt2
blob: 905ae823cc3e3c583c1a9c1853af51c376eff8d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; COMMAND-LINE: -i --bv-solver=bitblast --bv-assert-input
(set-logic QF_BV)
(declare-fun N () Bool)
(assert (not (= (_ bv1 1) (bvnot (ite N (_ bv1 1) (_ bv0 1))))))
(push 1)
(assert (not N))
(set-info :status unsat)
(check-sat)
(pop 1)
(set-info :status sat)
(check-sat)

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