aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/sat5.smt2
blob: d46092cd412e306fc041323f0ee2eeecca4a186d (plain)
1
2
3
4
5
6
7
(set-logic QF_UF)
(declare-fun a () Bool)
(declare-fun b () Bool)
(declare-fun c () Bool)
(assert (and (or a b c) (or (not a) (not b) (not c)) (or (not a) b) (or (not b) c) (or (not c) a)))
(check-sat)
(exit)