summaryrefslogtreecommitdiff
path: root/test/regress/regress0/fmf/fc-unsat-pent.smt2
blob: 2d4000e6ef008268dfe26d1ab204421c1e46d97b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(set-logic QF_UFC)
(set-info :status unsat)

(declare-sort U 0)

(declare-fun a () U)
(declare-fun b () U)
(declare-fun c () U)
(declare-fun d () U)
(declare-fun e () U)

(assert (not (= a b)))
(assert (not (= b c)))
(assert (not (= c d)))
(assert (not (= d e)))
(assert (not (= e a)))

(assert (fmf.card c 2))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback