Click or drag to resize
mpfr_libmpfr_nextbelow Method
Equivalent to mpfr_nexttoward where y is minus infinity.

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

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
Examples
// Create, initialize, and set a new floating-point number x to 10.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 10, mpfr_rnd_t.MPFR_RNDN) == 0);

// Move x to next above and then next below.
mpfr_lib.mpfr_nextabove(x);
mpfr_lib.mpfr_nextbelow(x);

// Assert that the value of x is 10.
Assert.IsTrue(mpfr_lib.mpfr_get_d(x, mpfr_rnd_t.MPFR_RNDN) == 10.0);

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