summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sep/sep-neg-1refine.smt2
blob: 867d4ccb8650dab852eb183a7b3f00c929e24a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; COMMAND-LINE: --no-check-models
; EXPECT: sat
(set-logic QF_ALL)
(set-info :status sat)
(declare-heap (Int Int))

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

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

(assert (not (sep (pto x a) (pto y b))))
(assert (sep (pto x a) (pto z b)))

; sat with model where y != z
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback