summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/dispose-1.smt2
blob: 25a38b0187319b84abd2331d9bc1104b0f633766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(set-logic QF_ALL_SUPPORTED)
(set-info :status unsat)

(declare-const w Int)
(declare-const w1 Int)
(declare-const w2 Int)

;------- f -------
(assert (= w1 (as sep.nil Int)))
(assert (= w2 (as sep.nil Int)))
;-----------------

(assert (pto w (as sep.nil Int)))
(assert (not (and (sep (and (_ emp Int Int) (= w2 (as sep.nil Int))) (pto w w1)) (sep (pto w w2) true))))

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