summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sep/crash1220.smt2
blob: f68434f33026e1fc7eac8df429eabf088d2c77a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --no-check-models
; EXPECT: sat
(set-logic QF_ALL_SUPPORTED)
(set-info :status sat)

(declare-const x Int)
(declare-const a Int)

(declare-const y Int)
(declare-const b Int)

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

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