Click or drag to resize
mpfr_libmpfr_rint_floor Method
Set rop to op rounded to the next lower or equal integer.

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_rint_floor(
	mpfr_t rop,
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
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
The return value is the ternary value associated with the considered round-to-integer function (regarded in the same way as any other mathematical function).
Remarks

If the result is not representable, it is rounded in the direction rnd. When op is a zero or an infinity, set rop to the same value (with the same sign).

Contrary to mpfr_rint, this function does perform a double rounding: first op is rounded to the nearest integer in the direction given by the function name, then this nearest integer (if not representable) is rounded in the given direction rnd. Thus these round-to-integer functions behave more like the other mathematical functions, i.e., the returned result is the correct rounding of the exact result of the function in the real numbers.

For example, mpfr_rint_round with rounding to nearest and a precision of two bits rounds 6.5 to 7 (halfway cases away from zero), then 7 is rounded to 8 by the round-even rule, despite the fact that 6 is also representable on two bits, and is closer to 6.5 than 8.

Examples
// Create, initialize, and set a new floating-point number op to 25.2.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 25.2, mpfr_rnd_t.MPFR_RNDN) == 0);

// Create and initialize a new floating-point number rop.
mpfr_t rop = new mpfr_t();
mpfr_lib.mpfr_init2(rop, 64U);

// Set rop = round(op).
Assert.IsTrue(mpfr_lib.mpfr_rint_floor(rop, op, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert the value of rop.
Assert.IsTrue(rop.ToString() == "0.250000000000000000000e2");

// Release unmanaged memory allocated for rop and op.
mpfr_lib.mpfr_clears(rop, op, null);
See Also