summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/nonvar-univ.smt2
blob: 5c3bc567ca84537d6c9a3959f5a4a899a700c89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --sets-ext
; EXPECT: sat
(set-logic ALL)
(set-info :status sat)
(declare-fun x () (Set Int))
(declare-fun P ((Set Int)) Bool)

(assert (P x))
(assert (not (P (singleton 0))))
(assert (member 1 x))
(assert (not (member 0 (as univset (Set Int)))))

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