(self)
| 995 | assert is_quantifier(q) |
| 996 | |
| 997 | def test_exists_basic(self): |
| 998 | x = Int("x") |
| 999 | q = Exists([x], x > 0) |
| 1000 | assert isinstance(q._ast, ExistsNode) |
| 1001 | assert is_quantifier(q) |
| 1002 | |
| 1003 | def test_forall_binds_variable(self): |
| 1004 | """Bound variable not in free vars.""" |
nothing calls this directly
no test coverage detected