Click or drag to resize
mpfr_libmpfr_clears Method
Free the space occupied by all the mpfr_t variables of the given list 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_clears(
	params mpfr_t[] x
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The list of floating-point numbers.
Remarks

See mpfr_clear for more details. The list of floating-point numbers ends when it encounters a null pointer (whose type must also be mpfr_t).

Examples
// Create new floating-point numbers x1, x2 and x3.
mpfr_t x1 = new mpfr_t();
mpfr_t x2 = new mpfr_t();
mpfr_t x3 = new mpfr_t();

// Initialize the floating-point numbers.
mpfr_lib.mpfr_inits(x1, x2, x3, null);

// Assert that their value is NaN.
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x1) != 0);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x2) != 0);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x3) != 0);

// Release unmanaged memory allocated for the floating-point numbers.
mpfr_lib.mpfr_clears(x1, x2, x3, null);
See Also