Click or drag to resize
mpfr_libmpfr_custom_move Method
Inform MPFR that the significand of x has moved due to a garbage collect and update its new position to new_position.

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_custom_move(
	mpfr_t x,
	void_ptr new_position
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
new_position
Type: Math.Gmp.Nativevoid_ptr
Pointer to the new address of the significand of x.
Remarks

However the application has to move the significand and the mpfr_t itself. The behavior of this function for any mpfr_t not initialized with mpfr_custom_init_set is undefined.

Examples
// Initialize a custom, 64-bit significand floating-point number, and set it to 0.
size_t size = mpfr_lib.mpfr_custom_get_size(64U);
void_ptr significand = gmp_lib.allocate(size);
gmp_lib.ZeroMemory(significand.ToIntPtr(), (int)size);
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_custom_init_set(x, mpfr_kind_t.MPFR_ZERO_KIND, 0, 64U, significand);

// Set x = 16.
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 16, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert the value of x.
Assert.IsTrue(x.ToString() == "0.160000000000000000000e2");

// Allocate new significand.
void_ptr significand2 = gmp_lib.allocate(8);
Marshal.Copy(new byte[] { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0 }, 0, significand2.ToIntPtr(), 8);

// Assign new significanf to x.
mpfr_lib.mpfr_custom_move(x, significand2);

// Assert the value of x.
Assert.IsTrue(x.ToString() == "0.240000000000000000000e2");

// Release unmanaged memory allocated for x and significand.
mpfr_lib.mpfr_custom_clear(x);
gmp_lib.free(significand);
gmp_lib.free(significand2);
See Also