summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/univset-simp.smt2
blob: a8875cc413d782112071cc1f56c6a6a13a74d02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; COMMAND-LINE: --sets-ext
; EXPECT: sat
(set-logic ALL)
(set-info :status sat)

(declare-fun a () (Set Int))
(declare-fun b () (Set Int))
(declare-fun c () (Set Int))
(declare-fun d () (Set Int))
(declare-fun e () (Set Int))
(declare-fun f () (Set Int))

(declare-fun x () Int)

(assert (not (member 0 a)))
(assert (member 0 b))
(assert (not (member 1 c)))
(assert (member 2 d))
(assert (= e (as univset (Set Int))))
(assert (= f (complement d)))
(assert (not (member x (as univset (Set Int)))))

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