aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/sat11.smt2
blob: 8912ada39aece4dde779548cd3193d197d2cbb52 (plain)
1
2
3
4
5
6
7
8
(set-logic QF_UF)
(declare-sort U 0)
(declare-fun a () U)
(declare-fun b () U)
(declare-fun c () U)
(assert (and (not (distinct a b c)) (not (= a b)) (not (= a c)) (not (= c b))))
(check-sat)
(exit)