summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/dispose-1.smt2
blob: 3c0e7df32ce2612afb6b77305e0d3964b75563a3 (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 0) (= 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