aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/sat7.smt2
blob: 387da5ea78ac1965a010f31fb516ee770ddbc969 (plain)
1
2
3
4
5
6
7
8
(set-logic QF_UF)
(declare-fun a () Bool)
(declare-fun b () Bool)
(declare-fun c () Bool)
(declare-fun d () Bool)
(assert (and a (and b (and c (and (or (not a) (or (not b) d)) (or (not d) (not c)))))))
(check-sat)
(exit)