(self)
| 2786 | assert not is_sort(42) |
| 2787 | |
| 2788 | def test_is_app(self): |
| 2789 | f = Function("f", IntSort(), IntSort()) |
| 2790 | x = Int("x") |
| 2791 | assert is_app(f(x)) |
| 2792 | assert not is_app(x) |
| 2793 | |
| 2794 | def test_is_func_decl(self): |
| 2795 | f = Function("f", IntSort(), IntSort()) |