(self)
| 1049 | assert not is_const(x + y) |
| 1050 | |
| 1051 | def test_is_quantifier(self): |
| 1052 | x = Int("x") |
| 1053 | assert is_quantifier(ForAll([x], x > 0)) |
| 1054 | assert not is_quantifier(x > 0) |
| 1055 | |
| 1056 | def test_is_eq(self): |
| 1057 | x, y = Ints("x y") |
nothing calls this directly
no test coverage detected