Click or drag to resize
mpfr_libmpfr_floor Method
Set rop to op rounded to the next lower or equal representable 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_floor(
	mpfr_t rop,
	mpfr_t op
)

Parameters

rop
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.

Return Value

Type: Int32
The return value is zero when the result is exact, positive when it is greater than the original value of op, and negative when it is smaller. More precisely, the returned value is 0 when op is an integer representable in rop, 1 or -1 when op is an integer that is not representable in rop, 2 or -2 when op is not an integer.
Remarks

When op is a zero or an infinity, set rop to the same value (with the same sign).

When op is NaN, the NaN flag is set as usual. In the other cases, the inexact flag is set when rop differs from op, following the ISO C99 rule for the rint function. If you want the behavior to be more like IEEE 754 / ISO TS 18661-1, i.e., the usual behavior where the round-to-integer function is regarded as any other mathematical function, you should use one the mpfr_rint_* functions instead.

Examples
// Create, initialize, and set a new floating-point number op to 10.4.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_d(op, 10.4, 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 = floor(op).
Assert.IsTrue(mpfr_lib.mpfr_floor(rop, op) == -2);

// Assert that the value of rop is 10.
Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) == 10.0);

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