aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/uf2.smt2
blob: 9b2e47b796cb32fb8bfca7b24357c725383e4356 (plain)
1
2
3
4
5
6
7
8
9
(set-logic QF_UF)
(declare-sort U 0)
(declare-fun a () U)
(declare-fun b () U)
(declare-fun c () U)
(declare-fun p (U) Bool)
(assert (and (or (and (p a) (p b)) (and (p b) (p c))) (not (p b))))
(check-sat)
(exit)