Click or drag to resize
mpfr_libmpfr_get_emax_max Method
Return the maximum exponent allowed for mpfr_set_emax.

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

Return Value

Type: mpfr_exp_t
Return the maximum exponent allowed for mpfr_set_emax.
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_emax maximum exponent.
Assert.IsTrue(mpfr_lib.mpfr_get_emax_max() == 1073741823);
See Also