| 575 | } |
| 576 | |
| 577 | expr expr::lambdaIdxType() const { |
| 578 | C(); |
| 579 | assert(Z3_get_quantifier_num_bound(ctx(), ast()) == 1); |
| 580 | return ::mkVar("sort", Z3_get_quantifier_bound_sort(ctx(), ast(), 0)); |
| 581 | } |
| 582 | |
| 583 | bool expr::isFPAdd(expr &rounding, expr &lhs, expr &rhs) const { |
| 584 | return isTernaryOp(rounding, lhs, rhs, Z3_OP_FPA_ADD); |