summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sep/loop-1220.smt2
blob: 41078391a17aef1da584e3fb826defaafcd9dd2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; 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)
(declare-const y0 Int)
(declare-const b0 Int)
(declare-const y00 Int)
(declare-const b00 Int)

(assert (or false (sep (pto x a) (or false (sep (pto y b) (or false (sep (pto y0 b0) (pto y00 b00) )))))))
(assert (not (or false (sep (pto x a) (not (or false (sep (pto y b) (not (or false (sep (pto y0 b0) (not (pto y00 b00)) )))))))))) 

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