mpfr_libmpfr_custom_get_exp Method |
Namespace: Math.Mpfr.Native
Return the exponent of x, assuming that x is a non-zero ordinary number. The return value for NaN, Infinity or zero is unspecified but does not produce any trap. The behavior of this function for any mpfr_t not initialized with mpfr_custom_init_set is undefined.
// 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 = x + 1. Assert.IsTrue(mpfr_lib.mpfr_add_si(x, x, 1, mpfr_rnd_t.MPFR_RNDN) == 0); // Assert that the exponent of x is 1. Assert.IsTrue(mpfr_lib.mpfr_custom_get_exp(x) == 1); // Release unmanaged memory allocated for x and significand. mpfr_lib.mpfr_custom_clear(x); gmp_lib.free(significand);