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