summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/loop-1220.smt2
blob: 2981606d80e94c786198ef4a3f2521a1944ded72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; COMMAND-LINE: --no-check-models
; EXPECT: sat
(set-logic ALL_SUPPORTED)
(set-info :status sat)

(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