summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sep/chain-int.smt2
blob: 14cd98ae22195187cd032732bdfa987ff2f1e47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(set-logic QF_ALL)
(set-info :status unsat)
(declare-heap (Int Int))

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

(assert (sep (pto x y) (pto y z)))
(assert (and (> x 3) (< x 5)))
(assert (and (> y 3) (< y 5)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback