(self)
| 1554 | assert not is_const(x + 1) |
| 1555 | |
| 1556 | def test_is_quantifier(self): |
| 1557 | x = Int("x") |
| 1558 | assert is_quantifier(ForAll([x], x > 0)) |
| 1559 | assert is_quantifier(Exists([x], x > 0)) |
| 1560 | assert not is_quantifier(x > 0) |
| 1561 | |
| 1562 | def test_is_eq_ne(self): |
| 1563 | x, y = Ints("x y") |
nothing calls this directly
no test coverage detected