Base case of a simple property: 0 + 0 = 0.
(self, kernel)
| 1407 | assert _try_prove(And(enc >= IntVal(0), enc <= IntVal(1))) |
| 1408 | |
| 1409 | def test_nat_induction_base(self, kernel): |
| 1410 | """Base case of a simple property: 0 + 0 = 0.""" |
| 1411 | assert _try_prove(NatVal(0) + NatVal(0) == NatVal(0)) |
| 1412 | |
| 1413 | def test_power_of_two_bv(self, kernel): |
| 1414 | """2^4 = 16 in 8-bit bitvectors.""" |
nothing calls this directly
no test coverage detected