Click or drag to resize
mpfr_libmpfr_fits_intmax_p Method
Return non-zero if op would fit in the C data type (32-bit) long when rounded to an integer in the direction rnd.

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 int mpfr_fits_intmax_p(
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Return non-zero if op would fit in the C data type (32-bit) long when rounded to an integer in the direction rnd.
Remarks

For instance, with the MPFR_RNDU rounding mode on −0.5, the result will be non-zero for all mpfr_fits_* functions. For MPFR_RNDF, those functions return non-zero when it is guaranteed that the corresponding conversion function (for example mpfr_get_ui(mpfr_t, mpfr_rnd_t) for mpfr_fits_ulong_p(mpfr_t, mpfr_rnd_t)), when called with faithful rounding, will always return a number that is representable in the corresponding type. As a consequence, for MPFR_RNDF, mpfr_fits_ulong_p(mpfr_t, mpfr_rnd_t) will return non-zero for a non-negative number less or equal to ULONG_MAX.

Examples
// Create, initialize, and set the value of op Int64.MaxValue.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_uj(op, Int64.MaxValue, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert that op fits in intmax_t.
Assert.IsTrue(mpfr_lib.mpfr_fits_intmax_p(op, mpfr_rnd_t.MPFR_RNDN) != 0);

// Release unmanaged memory allocated for op.
mpfr_lib.mpfr_clear(op);
See Also