(self, other: ArithRef | int | float)
| 530 | ) |
| 531 | |
| 532 | def __le__(self, other: ArithRef | int | float) -> BoolRef: |
| 533 | other = _coerce_arith(other, self._sort) |
| 534 | return BoolRef( |
| 535 | BinOpNode(BinOp.LE, self._ast, other._ast), |
| 536 | _merge(self._vars, other._vars), |
| 537 | ) |
| 538 | |
| 539 | def __gt__(self, other: ArithRef | int | float) -> BoolRef: |
| 540 | other = _coerce_arith(other, self._sort) |
nothing calls this directly
no test coverage detected