mpfr_libmpfr_fits_uint_p Method |
Return non-zero if op would fit in the C data type (32-bit) unsigned int 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)
Syntaxpublic static int mpfr_fits_uint_p(
mpfr_t op,
mpfr_rnd_t rnd
)
Public Shared Function mpfr_fits_uint_p (
op As mpfr_t,
rnd As mpfr_rnd_t
) As Integer
public:
static int mpfr_fits_uint_p(
mpfr_t^ op,
mpfr_rnd_t rnd
)
static member mpfr_fits_uint_p :
op : mpfr_t *
rnd : mpfr_rnd_t -> int
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:
Int32Return non-zero if
op would fit in the C data type (32-bit) unsigned int 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
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_ui(op, uint.MaxValue, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_fits_uint_p(op, mpfr_rnd_t.MPFR_RNDN) > 0);
mpfr_lib.mpfr_clear(op);
Dim op As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_init2(op, 64U)
Assert.IsTrue(mpfr_lib.mpfr_set_ui(op, uInteger.MaxValue, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_fits_uint_p(op, mpfr_rnd_t.MPFR_RNDN) > 0)
mpfr_lib.mpfr_clear(op)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also