summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/eqtest.smt2
blob: 06f86ae3c2213296f63120fc61a74c87b8079dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(set-logic QF_ALL)
(set-info :status unsat)
(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 G () (Set Int) )
(declare-fun H () (Set Int) )
(declare-fun I () (Set Int) )
(declare-fun x () Int)
(assert (member x (intersection (union A B) C)))
(assert (not (member x G)))
(assert (= (union A B) D))
(assert (= C (intersection E F)))
(assert (and (= F H) (= G H) (= H I)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback