mpfr_libmpfr_free_pool Method |
Namespace: Math.Mpfr.Native
Note: This function is automatically called after the thread-local caches are freed (with mpfr_free_cache or mpfr_free_cache2(mpfr_free_cache_t)).
// Create and initialize a new floating-point number z. mpfr_t z = new mpfr_t(); mpfr_lib.mpfr_init2(z, 64U); // Assert that z is the Catalan's constant. Assert.IsTrue(mpfr_lib.mpfr_const_log2(z, mpfr_rnd_t.MPFR_RNDN) == 1); Assert.IsTrue(z.ToString() == "0.693147180559945309429e0"); // Release unmanaged memory allocated for x and z. mpfr_lib.mpfr_clear(z); // Free internal pools. mpfr_lib.mpfr_free_pool();
' Create and initialize a new floating-point number z. Dim z As mpfr_t = New mpfr_t() mpfr_lib.mpfr_init2(z, 64U) ' Assert that z is the Catalan's constant. Assert.IsTrue(mpfr_lib.mpfr_const_log2(z, mpfr_rnd_t.MPFR_RNDN) = 1) Assert.IsTrue(z.ToString() = "0.693147180559945309429e0") ' Release unmanaged memory allocated for x and z. mpfr_lib.mpfr_clear(z) ' Free internal pools. mpfr_lib.mpfr_free_pool()
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.