mpfr_libmpfr_nextabove Method |
Namespace: Math.Mpfr.Native
public static void mpfr_nextabove( mpfr_t x )
Public Shared Sub mpfr_nextabove ( x As mpfr_t )
public: static void mpfr_nextabove( mpfr_t^ x )
static member mpfr_nextabove : x : mpfr_t -> unit
// 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);
' Create, initialize, and set a new floating-point number x to 10. Dim x As mpfr_t = 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)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.