x | x == x.
(self, kernel)
| 683 | assert prove(claim) |
| 684 | |
| 685 | def test_bv_or_self(self, kernel): |
| 686 | """x | x == x.""" |
| 687 | x = BitVec("x", 8) |
| 688 | claim = ForAll([x], (x | x) == x) |
| 689 | assert prove(claim) |
| 690 | |
| 691 | def test_bv_not_not(self, kernel): |
| 692 | """~~x == x.""" |