~~x == x.
(self, kernel)
| 689 | assert prove(claim) |
| 690 | |
| 691 | def test_bv_not_not(self, kernel): |
| 692 | """~~x == x.""" |
| 693 | x = BitVec("x", 8) |
| 694 | claim = ForAll([x], ~~x == x) |
| 695 | assert prove(claim) |
| 696 | |
| 697 | def test_bv_add_zero(self, kernel): |
| 698 | """x + 0 == x.""" |