Click or drag to resize
mpfr_libmpfr_divby0_p Method
Return the divide-by-zero flag, which is non-zero iff the flag is set.

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_divby0_p()

Return Value

Type: Int32
Return the divide-by-zero flag, which is non-zero iff the flag is set.
Examples
// Clear flag and assert that flag is clear.
mpfr_lib.mpfr_clear_divby0();
Assert.IsTrue(mpfr_lib.mpfr_divby0_p() == 0);
See Also