Click or drag to resize
mpfr_libmpfr_nexttoward Method
Replace x by the next floating-point number in the direction of y.

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_nexttoward(
	mpfr_t x,
	mpfr_t y
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The first operand floating-point number.
y
Type: Math.Mpfr.Nativempfr_t
The second operand floating-point number.
Remarks

If x or y is NaN, set x to NaN; note that the NaN flag is set as usual. If x and y are equal, x is unchanged. Otherwise, if x is different from y, replace x by the next floating-point number (with the precision of x and the current exponent range) in the direction of y (the infinite values are seen as the smallest and largest floating-point numbers). If the result is zero, it keeps the same sign. No underflow, overflow, or inexact exception is raised.

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);

mpfr_t y1 = "11.0";
mpfr_t y2 = "12.0";

// Move x toward y1 then y2.
mpfr_lib.mpfr_nexttoward(x, y1);
mpfr_lib.mpfr_nexttoward(x, y2);

// 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, y1, and y2.
mpfr_lib.mpfr_clears(x, y1, y2, null);
See Also