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

(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 (sep (pto x a) (pto y b) (pto z c)))

(assert (or (= x y) (= y z) (= x z)))

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