summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/sep-03.smt2
blob: 427c44b507f833225e8d87188ee6686d4604064e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(set-logic ALL_SUPPORTED)
(set-info :status unsat)

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

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

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

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

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