SetComplement creates an array expression.
(self)
| 2014 | assert isinstance(i, ExprRef) |
| 2015 | |
| 2016 | def test_set_complement(self): |
| 2017 | """SetComplement creates an array expression.""" |
| 2018 | |
| 2019 | s = SetComplement(EmptySet(IntSort())) |
| 2020 | assert isinstance(s, ExprRef) |
| 2021 | |
| 2022 | def test_set_difference(self): |
| 2023 | """SetDifference creates an array expression.""" |
nothing calls this directly
no test coverage detected