mpfr_libmpfr_custom_init_set Method |
Namespace: Math.Mpfr.Native
public static void mpfr_custom_init_set( mpfr_t x, mpfr_kind_t kind, mpfr_exp_t exp, uint prec, void_ptr significand )
Perform a dummy initialization of a mpfr_t and set it to:
In all cases, it uses significand directly for further computing involving x. It will not allocate anything. A floating-point number initialized with this function cannot be resized using mpfr_set_prec or mpfr_prec_round, or cleared using mpfr_clear! The significand must have been initialized with mpfr_custom_init using the same precision prec.
The mpfr_custom_clear function must be called to free the memory occupied by x.
// 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 exponent of x. Assert.IsTrue(mpfr_lib.mpfr_custom_get_exp(x) == 5); // Assert significand of x. Byte[] result = new byte[] { 0, 0, 0, 0, 0, 0, 0, 0x80 }; Byte[] sp = new byte[8]; Marshal.Copy(significand.ToIntPtr(), sp, 0, 8); Assert.IsTrue(sp.SequenceEqual(result)); // Release unmanaged memory allocated for x and significand. mpfr_lib.mpfr_custom_clear(x); gmp_lib.free(significand);