mpfr_libmpfr_rint_trunc Method |
Namespace: Math.Mpfr.Native
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.
// 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_trunc(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);