mpfr_libmpfr_nexttoward Method |
Namespace: Math.Mpfr.Native
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.
// 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);