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