summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/sets-equal.smt2
blob: a2ce4b3c28bcec2056343611f7ab9e11a9994586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(set-logic ALL_SUPPORTED)
(set-info :status unsat)
(declare-fun x () Int)
(declare-fun y () Int)
(declare-fun z () Int)
(assert (= x y))
(declare-fun a () (Set Int))
(declare-fun b () (Set Int))
(assert (not (in x a)))
(assert (in y (union a b)))
(assert (= x z))
(assert (not (in z a)))
(assert (= a b))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback