summaryrefslogtreecommitdiff
path: root/test/regress/regress0/fmf/fc-unsat-pent.smt2
blob: f1721cb04c3eb064fde4e984f83c711e46f83a33 (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