Click or drag to resize
mpfr_libmpfr_get_f Method
Convert op to a mpf_t, after rounding it with respect to rnd.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int mpfr_get_f(
	mpf_t rop,
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Gmp.Nativempf_t
The result floating-point number.
op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Return zero, a positive, or a negative value if rop is respectively equal to, greater than, or lower than the exact result. See GNU MPFR - Rounding Modes for details.
Remarks

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.

Examples
// 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);
See Also