summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/nonvar-univ.smt2
blob: c71c984a238457a82ee94e4678bcbd43efc6b577 (plain)
1
2
3
4
5
6
7
8
9
10
11
(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