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

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

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