aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/sat6.smt2
blob: 3c73489d74697d1b24d6a5688fe4f3d87ea8c45c (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 (and a b))
(assert (or c d))
(assert (not (or c (and a (and b d)))))
(check-sat)
(exit)