(self, other: BitVecRef | int)
| 734 | ) |
| 735 | |
| 736 | def __gt__(self, other: BitVecRef | int) -> BoolRef: |
| 737 | other = _coerce_bv(other, self._sort) |
| 738 | return BoolRef( |
| 739 | BinOpNode(BinOp.SGT, self._ast, other._ast), |
| 740 | _merge(self._vars, other._vars), |
| 741 | ) |
| 742 | |
| 743 | def __ge__(self, other: BitVecRef | int) -> BoolRef: |
| 744 | other = _coerce_bv(other, self._sort) |
nothing calls this directly
no test coverage detected