(self)
| 1585 | assert is_array(a) |
| 1586 | |
| 1587 | def test_as_array_requires_unary(self): |
| 1588 | f = Function("f", IntSort(), IntSort(), IntSort()) |
| 1589 | with pytest.raises(TypeError): |
| 1590 | AsArray(f) |
| 1591 | |
| 1592 | def test_map_sort(self): |
| 1593 | f = Function("f", IntSort(), IntSort()) |