Click or drag to resize
mpfr_libmpfr_set_inf Method
Set the variable x to infinity.

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_inf(
	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

In mpfr_set_inf, x is set to plus infinity iff sign is nonnegative.

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

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

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