Click or drag to resize
mpfr_libmpfr_set_default_prec Method
Set the default precision to be exactly prec bits, where prec can be any integer between MPFR_PREC_MINand MPFR_PREC_MAX.

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 void mpfr_set_default_prec(
	mpfr_prec_t prec
)

Parameters

prec
Type: Math.Mpfr.Nativempfr_prec_t
The new default precision in bits.
Remarks

The precision of a variable means the number of bits used to store its significand. All subsequent calls to mpfr_init or mpfr_inits will use this precision, but previously initialized variables are unaffected. The default precision is set to 53 bits initially.

Note: when MPFR is built with the --enable-thread-safe configure option (mpfr_buildopt_tls_p), the default precision is local to each thread. See GNU MPFR - Memory Handling, for more information.

Examples
// Set default precision to 128 bits.
mpfr_lib.mpfr_set_default_prec(128U);

// Assert that the value of x is 128 bits.
Assert.IsTrue(mpfr_lib.mpfr_get_default_prec() == 128U);
See Also