Click or drag to resize
mpfr_libmpfr_clear_flags Method
Clear (lower) all global flags (underflow, overflow, divide-by-zero, invalid, inexact, erange).

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_clear_flags()
Remarks

Note: a group of flags can be cleared by using mpfr_flags_clear(mpfr_flags_t).

Examples
// Clear all flags and assert that flags are clear.
mpfr_lib.mpfr_clear_flags();
Assert.IsTrue(mpfr_lib.mpfr_underflow_p() == 0);
Assert.IsTrue(mpfr_lib.mpfr_overflow_p() == 0);
Assert.IsTrue(mpfr_lib.mpfr_divby0_p() == 0);
Assert.IsTrue(mpfr_lib.mpfr_nanflag_p() == 0);
Assert.IsTrue(mpfr_lib.mpfr_inexflag_p() == 0);
Assert.IsTrue(mpfr_lib.mpfr_erangeflag_p() == 0);
See Also