(self)
| 2519 | assert isinstance(r, BoolRef) |
| 2520 | |
| 2521 | def test_add_no_underflow(self): |
| 2522 | x, y = BitVecs("x y", 8) |
| 2523 | r = BVAddNoUnderflow(x, y) |
| 2524 | assert isinstance(r, BoolRef) |
| 2525 | |
| 2526 | def test_sub_no_overflow(self): |
| 2527 | x, y = BitVecs("x y", 8) |
nothing calls this directly
no test coverage detected