(self)
| 4034 | assert isinstance(s2, ArrayRef) |
| 4035 | |
| 4036 | def test_set_union(self): |
| 4037 | a = EmptySet(IntSort()) |
| 4038 | b = EmptySet(IntSort()) |
| 4039 | result = SetUnion(a, b) |
| 4040 | assert isinstance(result, ArrayRef) |
| 4041 | |
| 4042 | def test_set_intersect(self): |
| 4043 | a = EmptySet(IntSort()) |