Click or drag to resize
mpfr_libmpfr_get_prec Method
Return the precision of x, i.e., the number of bits used to store its significand.

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 mpfr_prec_t mpfr_get_prec(
	mpfr_t x
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The floating-point number.

Return Value

Type: mpfr_prec_t
The precision of x, i.e., the number of bits used to store its significand.
Examples
// Create and initialize a new floating-point number x with 64-bit precision.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);

// Assert that the value of x is 0.0, and that its precision is 64 bits.
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0);
Assert.IsTrue(mpfr_lib.mpfr_get_prec(x) == 64U);

// Release unmanaged memory allocated for x.
mpfr_lib.mpfr_clear(x);
See Also