Click or drag to resize
mpfr_libmpfr_mp_memory_cleanup Method

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 int mpfr_mp_memory_cleanup()

Return Value

Type: Int32
Zero is returned in case of success, non-zero in case of error.
Remarks

See Section 4.7 GNU MPFR - Memory Handling, page 10, for more information. Zero is returned in case of success, nonzero in case of error. Errors are currently not possible, but checking the return value is recommended for future compatibility.

Examples
// 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();
See Also