Click or drag to resize
mpfr_libmpfr_min_prec Method
Return the minimal number of bits required to store the significand of x, and 0 for special values, including 0.

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

Parameters

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

Return Value

Type: mpfr_prec_t
Return the minimal number of bits required to store the significand of x, and 0 for special values, including 0.
Examples
// Create and initialize a new floating-point number x.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(x, 10.0, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert the minimum precision in bits to store the value of x.
Assert.IsTrue(mpfr_lib.mpfr_min_prec(x) == 3);

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