summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/sep-nterm-val-model.smt2
blob: 0178134cb14263864f38557e34e4a76b726c44a3 (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 z Int)

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

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

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