summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/apply-collapse-sat.smt2
blob: 74a9df660c0b2038b26455fbafaa137aeb62f387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; COMMAND-LINE: --uf-ho
; EXPECT: sat
(set-logic UF)
(set-info :status sat)
(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) 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