mpfr_libmpfr_get_f Method |
Namespace: Math.Mpfr.Native
The erange flag is set if op is NaN or an infinity, which do not exist in MPF. If op is NaN, then rop is undefined. If op is +Inf (resp. -Inf), then rop is set to the maximum (resp. minimum) value in the precision of the MPF number; if a future MPF version supports infinities, this behavior will be considered incorrect and will change (portable programs should assume that rop is set either to this finite number or to an infinite number). Note that since MPFR currently has the same exponent type as MPF (but not with the same radix), the range of values is much larger in MPF than in MPFR, so that an overflow or underflow is not possible.
// Create, initialize, and set a new floating-point number op to 10.4. mpfr_t op = new mpfr_t(); mpfr_lib.mpfr_init2(op, 64U); Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 10.4, mpfr_rnd_t.MPFR_RNDN) == 0); // Create and initialize a new floating-point number rop. mpf_t rop = new mpf_t(); gmp_lib.mpf_init(rop); // Set rop = op. Assert.IsTrue(mpfr_lib.mpfr_get_f(rop, op, mpfr_rnd_t.MPFR_RNDN) == 0); // Assert that the value of rop is 10.4. Assert.IsTrue(gmp_lib.mpf_get_d(rop) == 10.4); // Release unmanaged memory allocated for rop and op. gmp_lib.mpf_clear(rop); mpfr_lib.mpfr_clear(op);