Click or drag to resize
mpfr_libmpfr_set_underflow Method
Set (raised) the underflow flag.

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_set_underflow()
Examples
// Set flag and assert that flag is set.
mpfr_lib.mpfr_set_underflow();
Assert.IsTrue(mpfr_lib.mpfr_underflow_p() != 0);
See Also