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

(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