(self, other: BitVecRef | int)
| 727 | ) |
| 728 | |
| 729 | def __le__(self, other: BitVecRef | int) -> BoolRef: |
| 730 | other = _coerce_bv(other, self._sort) |
| 731 | return BoolRef( |
| 732 | BinOpNode(BinOp.SLE, self._ast, other._ast), |
| 733 | _merge(self._vars, other._vars), |
| 734 | ) |
| 735 | |
| 736 | def __gt__(self, other: BitVecRef | int) -> BoolRef: |
| 737 | other = _coerce_bv(other, self._sort) |
nothing calls this directly
no test coverage detected