(self)
| 1580 | Map(f) |
| 1581 | |
| 1582 | def test_as_array_basic(self): |
| 1583 | f = Function("f", IntSort(), IntSort()) |
| 1584 | a = AsArray(f) |
| 1585 | assert is_array(a) |
| 1586 | |
| 1587 | def test_as_array_requires_unary(self): |
| 1588 | f = Function("f", IntSort(), IntSort(), IntSort()) |