aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/sat12.smt2
blob: 67620044f4d7479dbc4fc22f19efa3d493347212 (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic QF_UF)
(declare-fun a () Bool)
(declare-fun b () Bool)
(declare-fun c () Bool)
(declare-fun d () Bool)
(assert (and a b))
(assert (or c d))
(assert (= a a))
(assert (not (or c (and a b d))))
(check-sat)
(exit)