summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sep/simple-080420-const-sets.smt2
blob: 1d85fb133080250299cf48b5fb8871ae728f608a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --no-check-models
; EXPECT: sat
(set-logic QF_ALL_SUPPORTED)
(set-option :produce-models true)
(set-info :status sat)
(declare-fun x () Int)

; works
;(assert (sep (pto 1 2) (pto 5 6) (pto x 8)))

; didn't work due to sets rewriter
(assert (sep (pto 1 2) (pto 5 6) (pto 7 8)))

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