Click or drag to resize
mpfr_libmpfr_set_default_rounding_mode Method
Set the default rounding mode to rnd.

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_rounding_mode(
	mpfr_rnd_t rnd
)

Parameters

rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.
Remarks

The default rounding mode is to nearest initially.

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