Signed division.
(a: BitVecRef, b: BitVecRef | int)
| 1632 | |
| 1633 | |
| 1634 | def SDiv(a: BitVecRef, b: BitVecRef | int) -> BitVecRef: |
| 1635 | """Signed division.""" |
| 1636 | return a._binop(BinOp.SDIV, b) |
| 1637 | |
| 1638 | |
| 1639 | def SRem(a: BitVecRef, b: BitVecRef | int) -> BitVecRef: |