Click or drag to resize
gmp_libmpf_get_d Method
Convert op to a double, truncating if necessary (i.e. rounding towards zero).

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static double mpf_get_d(
	mpf_t op
)

Parameters

op
Type: Math.Gmp.Nativempf_t
The operand float.

Return Value

Type: Double
The cpnverted double.
Remarks

If the exponent in op is too big or too small to fit a double then the result is system dependent. For too big an infinity is returned when available. For too small 0.0 is normally returned. Hardware overflow, underflow and denorm traps may or may not occur.

Examples
// Set default precision to 64 bits.
gmp_lib.mpf_set_default_prec(64U);

// Create, initialize, and set a new floating-point number to -123.0
mpf_t x = new mpf_t();
gmp_lib.mpf_init_set_d(x, -123.0);

// Assert that the value of x is -123.0.
Assert.IsTrue(gmp_lib.mpf_get_d(x) == -123.0);

// Release unmanaged memory allocated for x.
gmp_lib.mpf_clear(x);
See Also