Click or drag to resize
mpfr_libmpfr_swap Method
Swap the structures pointed to by x and 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_swap(
	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

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

Examples
// 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);
See Also