Click or drag to resize
mpfr_libmpfr_get_default_prec Method
Return the current default MPFR precision in bits.

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_default_prec()

Return Value

Type: mpfr_prec_t
The current default MPFR precision in bits.
Remarks

See the documentation of mpfr_set_default_prec.

Examples
// Assert that default precision is 53 bits.
Assert.IsTrue(mpfr_lib.mpfr_get_default_prec() == 53U);
See Also