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

(declare-const x Int)
(declare-const a Int)

(declare-const y Int)
(declare-const b Int)

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

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