Click or drag to resize
mpfr_libmpfr_flags_restore Method
Restore the flags specified by mask to their state represented in flags.

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_flags_restore(
	mpfr_flags_t flags,
	mpfr_flags_t mask
)

Parameters

flags
Type: Math.Mpfr.Nativempfr_flags_t
The bit flags.
mask
Type: Math.Mpfr.Nativempfr_flags_t
The bit flags mask.
Examples
// Set erange and divby0 flags.
mpfr_lib.mpfr_flags_restore(mpfr_flags_t.MPFR_FLAGS_ERANGE | mpfr_flags_t.MPFR_FLAGS_DIVBY0, mpfr_flags_t.MPFR_FLAGS_ALL);

// Get all flags, and assert their values.
mpfr_flags_t flags = mpfr_lib.mpfr_flags_save();
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_DIVBY0) != 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_ERANGE) != 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_INEXACT) == 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_NAN) == 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_OVERFLOW) == 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_UNDERFLOW) == 0);
See Also