summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/ho-matching-nested-app.smt2
blob: d6de559e6c1e7e2a1cb54a5cc9d04303f9c232be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; COMMAND-LINE: --uf-ho
; EXPECT: unsat
(set-logic ALL)
(set-info :status unsat)

(declare-sort U 0)

(declare-fun p (Int) Bool)
(declare-fun g (Int) Int)

(assert (not (p (g 0))))
;(assert (= 0 (g 0)))

(assert (forall ((f (-> Int Int)) (y Int)) (p (f (f (f (f (f y))))))))

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