(self, kernel)
| 419 | assert _try_prove(n >= NatVal(0)) |
| 420 | |
| 421 | def test_nat_succ_pos(self, kernel): |
| 422 | n = Nat("n") |
| 423 | assert _try_prove(n + NatVal(1) > NatVal(0)) |
| 424 | |
| 425 | |
| 426 | # =================================================================== |
nothing calls this directly
no test coverage detected