Click or drag to resize
mpfr_libmpfr_set_zero Method
Set the variable x to zero.

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_set_zero(
	mpfr_t x,
	int sign
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
sign
Type: SystemInt32
The sign of the result.
Remarks

Inmpfr_set_zero, x is set to plus zero iff sign is nonnegative.

Examples
// Create, initialize, and set a new floating-point number x to +0.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);
mpfr_lib.mpfr_set_zero(x, 1);

// Assert x is 0.
Assert.IsTrue(mpfr_lib.mpfr_zero_p(x) != 0);

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