x & x == x.
(self, kernel)
| 677 | assert prove(claim) |
| 678 | |
| 679 | def test_bv_and_self(self, kernel): |
| 680 | """x & x == x.""" |
| 681 | x = BitVec("x", 8) |
| 682 | claim = ForAll([x], (x & x) == x) |
| 683 | assert prove(claim) |
| 684 | |
| 685 | def test_bv_or_self(self, kernel): |
| 686 | """x | x == x.""" |