mpfr_libmpfr_swap Method |
Namespace: Math.Mpfr.Native
In particular, the values are exchanged without rounding (this may be different from three mpfr_set calls using a third auxiliary variable).
Warning! Since the precisions are exchanged, this will affect future assignments. Moreover, since the significand pointers are also exchanged, you must not use this function if the allocation method used for x and/or y does not permit it. This is the case when x and/or y were declared and initialized with mpfr_custom_init_set (see GNU MPFR - Custom Interface).
// Create, initialize, and set a new floating-point number x to 10. mpfr_t x = new mpfr_t(); mpfr_lib.mpfr_init2(x, 128U); Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 10, mpfr_rnd_t.MPFR_RNDN) == 0); // Create, initialize, and set a new floating-point number y to -210. mpfr_t y = new mpfr_t(); mpfr_lib.mpfr_init2(y, 128U); Assert.IsTrue(mpfr_lib.mpfr_set_si(y, -210, mpfr_rnd_t.MPFR_RNDN) == 0); // Swap the values of x and y. mpfr_lib.mpfr_swap(x, y); // Assert that the value of x is -210. Assert.IsTrue(mpfr_lib.mpfr_get_d(x, mpfr_rnd_t.MPFR_RNDN) == -210.0); // Assert that the value of y is 10. Assert.IsTrue(mpfr_lib.mpfr_get_d(y, mpfr_rnd_t.MPFR_RNDN) == 10.0); // Release unmanaged memory allocated for x and y. mpfr_lib.mpfr_clears(x, y, null);