Click or drag to resize
mpfr_libmpfr_get_default_rounding_mode Method
Get the default rounding mode.

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_rnd_t mpfr_get_default_rounding_mode()

Return Value

Type: mpfr_rnd_t
The default rounding mode.
Examples
// Set default rounding mode.
mpfr_lib.mpfr_set_default_rounding_mode(mpfr_rnd_t.MPFR_RNDN);

// Assert default rounding mode.
Assert.IsTrue(mpfr_lib.mpfr_get_default_rounding_mode() == mpfr_rnd_t.MPFR_RNDN);
See Also