mpfr_libmpfr_rint Method |
Namespace: Math.Mpfr.Native
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 (however it is not possible to round to nearest with the even rounding rule yet).
Note that mpfr_round is different from mpfr_rint called with the rounding to nearest mode (where halfway cases are rounded to an even integer or significand). Note also that no double rounding is performed; for instance, 10.5 (1010.1 in binary) is rounded by mpfr_rint with rounding to nearest to 12 (1100 in binary) in 2-bit precision, because the two enclosing numbers representable on two bits are 8 and 12, and the closest is 12. (If one first rounded to an integer, one would round 10.5 to 10 with even rounding, and then 10 would be rounded to 8 again with even rounding.)
// 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(rop, op, mpfr_rnd_t.MPFR_RNDN) == -2); // 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);