(self)
| 2779 | assert not is_arith(BitVec("v", 8)) |
| 2780 | |
| 2781 | def test_is_sort(self): |
| 2782 | assert is_sort(IntSort()) |
| 2783 | assert is_sort(BoolSort()) |
| 2784 | assert is_sort(BitVecSort(8)) |
| 2785 | assert not is_sort(Int("x")) |
| 2786 | assert not is_sort(42) |
| 2787 | |
| 2788 | def test_is_app(self): |
| 2789 | f = Function("f", IntSort(), IntSort()) |
nothing calls this directly
no test coverage detected