| 585 | } |
| 586 | |
| 587 | bool expr::isFPSub(expr &rounding, expr &lhs, expr &rhs) const { |
| 588 | return isTernaryOp(rounding, lhs, rhs, Z3_OP_FPA_SUB); |
| 589 | } |
| 590 | |
| 591 | bool expr::isFPMul(expr &rounding, expr &lhs, expr &rhs) const { |
| 592 | return isTernaryOp(rounding, lhs, rhs, Z3_OP_FPA_MUL); |