Click or drag to resize
mpfr_libmpfr_get_emin Method
Return the (current) smallest exponent allowed for a floating-point variable.

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 mpfr_exp_t mpfr_get_emin()

Return Value

Type: mpfr_exp_t
Return the (current) smallest exponent allowed for a floating-point variable.
Remarks

The smallest positive value of a floating-point variable is one half times 2 raised to the smallest exponent and the largest value has the form (1 - epsilon) times 2 raised to the largest exponent, where epsilon depends on the precision of the considered variable.

Examples
// Assert minimum exponent.
Assert.IsTrue(mpfr_lib.mpfr_get_emin() == -1073741823);
See Also