Click or drag to resize
mpfr_libmpfr_get_emin_min Method
Return the minimum exponent allowed for mpfr_set_emin.

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_min()

Return Value

Type: mpfr_exp_t
Return the minimum exponent allowed for mpfr_set_emin.
Remarks

This value is implementation dependent, thus a program using mpfr_set_emax(mpfr_get_emax_max()) or mpfr_set_emin(mpfr_get_emin_min()) may not be portable.

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