(self)
| 1043 | assert not is_array(Int("x")) |
| 1044 | |
| 1045 | def test_is_const_var(self): |
| 1046 | assert is_const(Int("x")) |
| 1047 | assert is_var(Int("x")) |
| 1048 | x, y = Ints("x y") |
| 1049 | assert not is_const(x + y) |
| 1050 | |
| 1051 | def test_is_quantifier(self): |
| 1052 | x = Int("x") |