(self)
| 989 | """Ported from z3py guide & socrates.py.""" |
| 990 | |
| 991 | def test_forall_basic(self): |
| 992 | x = Int("x") |
| 993 | q = ForAll([x], x + 0 == x) |
| 994 | assert isinstance(q._ast, ForAllNode) |
| 995 | assert is_quantifier(q) |
| 996 | |
| 997 | def test_exists_basic(self): |
| 998 | x = Int("x") |
nothing calls this directly
no test coverage detected