summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/apply-collapse-unsat.smt2
blob: 101de9081f62ccacfe44ce0b0e1278ed4088a68d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; COMMAND-LINE: --uf-ho
; EXPECT: unsat
(set-logic UF)
(set-info :status unsat)
(declare-sort U 0)
(declare-fun f (U U) U)
(declare-fun g (U) U)
(declare-fun a () U)
(declare-fun b () U)
(declare-fun c () U)
(declare-fun d () U)
(assert (or (= g (f a)) (= g (f b))))
(assert (not (= (f a a) b)))
(assert (not (= (f b a) b)))
(assert (not (= (f a a) c)))
(assert (not (= (f b a) c)))
(assert (or (= (g a) b) (= (g a) c)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback