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)
Syntaxpublic static void mpfr_clear_flags()
Public Shared Sub mpfr_clear_flags
public:
static void mpfr_clear_flags()
static member mpfr_clear_flags : unit -> unit
Remarks
Examples
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);
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)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also