summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/sep-plus1.smt2
blob: b843c1eda03cf1cc4f583fbd785cf17b8097308b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(set-logic QF_ALL_SUPPORTED)
(set-info :status unsat)
(declare-heap (Int Int))

(declare-const x Int)
(declare-const y Int)
(declare-const z Int)

(declare-const a Int)
(declare-const b Int)
(declare-const c Int)

(assert (and
        (sep (pto x a) true)
        (sep (pto y (+ a 1)) true)
))
(assert (= x y))

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