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