summaryrefslogtreecommitdiff
path: root/test/regress/regress0/uf/cnf-iff-base.smt2
blob: 9c538de6cb8a1ca8f268ad8113f0919f986b2513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(set-logic QF_UF)
(set-info :status unsat)
(declare-sort U 0)

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

(assert (= (not (= (f a) d)) (not (= d (f b)))))

(assert (or (not (= (f a) d)) (not (= d (f b)))))
(assert (or (= (f a) d) (= d (f b))))

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