| 2041 | } |
| 2042 | |
| 2043 | expr expr::sint2fp(const expr &type, const expr &rm) const { |
| 2044 | C(type, rm); |
| 2045 | return simplify_const(Z3_mk_fpa_to_fp_signed(ctx(), rm(), ast(), type.sort()), |
| 2046 | *this); |
| 2047 | } |
| 2048 | |
| 2049 | expr expr::uint2fp(const expr &type, const expr &rm) const { |
| 2050 | C(type, rm); |
no test coverage detected