Click or drag to resize
mpfr_libmpfr_set_divby0 Method
Set (raised) the divide-by-zero 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_divby0()
Examples
// Set flag and assert that flag is set.
mpfr_lib.mpfr_set_divby0();
Assert.IsTrue(mpfr_lib.mpfr_divby0_p() != 0);
See Also