summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sep/split-find-unsat.smt2
blob: 346c0083e0cb50637a30afb1cd9318505a354584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; COMMAND-LINE:
; EXPECT: unsat
(set-logic QF_ALL)
(set-info :status unsat)
(declare-heap (Int Int))

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

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

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

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