mpfr_libmpfr_free_cache2 Method |
Namespace: Math.Mpfr.Native
Free those local to the current thread if flag MPFR_FREE_LOCAL_CACHE is set. Free those shared by all threads if flag MPFR_FREE_GLOBAL_CACHE is set.
The other bits of way are currently ignored and are reserved for future use; they should be zero.
Note: mpfr_free_cache2(mpfr_free_cache_t)(MPFR_FREE_LOCAL_CACHE | MPFR_FREE_GLOBAL_CACHE) is currently equivalent to mpfr_free_cache().
// 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 constants cache. mpfr_lib.mpfr_free_cache2(mpfr_free_cache_t.MPFR_FREE_GLOBAL_CACHE | mpfr_free_cache_t.MPFR_FREE_LOCAL_CACHE);