Click or drag to resize
mpfr_libmpfr_clear Method
Free the space occupied by the significand of x.

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 void mpfr_clear(
	mpfr_t x
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The floating-point number.
Remarks

Make sure to call this function for all mpfr_t variables when you are done with them.

Examples
// Create and initialize a new floating-point number x.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);

// Assert that the value of x is NaN.
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0);

// Release unmanaged memory allocated for x.
 mpfr_lib.mpfr_clear(x);
See Also