summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/simple-matching-partial.smt2
blob: 41b2a0bca02c8b76ea71de630b94404056d5bee2 (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 f (U U) U)
(declare-fun g (U) U)
(declare-fun a () U)
(declare-fun b () U)
(declare-fun c () U)
; should instantiate f/x, g/y
(assert (forall ((x (-> U U U)) (y (-> U U))) (=> (not (= (x a) y)) (or (= (x a c) b) (= (y c) b)))))
(assert (not (= (f a c) b)))
(assert (not (= (g c) b)))
; this is required for unsatisfiable or else (f a) can be equal to g
(assert (not (= (f a a) (g a))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback