Click or drag to resize
mpfr_libmpfr_inf_p Method
Return non-zero if op is an infinity. Return zero otherwise.

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_inf_p(
	mpfr_t op
)

Parameters

op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.

Return Value

Type: Int32
Return non-zero if op is an infinity. Return zero otherwise.
Examples
// Create, initialize, and set a new floating-point number op to 1.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_si(op, 1, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert that op is not infinity.
Assert.IsTrue(mpfr_lib.mpfr_inf_p(op) == 0);

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