(self)
| 3042 | assert f.domain(1) == RealSort() |
| 3043 | |
| 3044 | def test_range(self): |
| 3045 | f = Function("f", IntSort(), BoolSort()) |
| 3046 | assert f.range() == BoolSort() |
| 3047 | |
| 3048 | def test_domain_out_of_range(self): |
| 3049 | f = Function("f", IntSort(), BoolSort()) |