mpfr_libmpfr_ceil Method |
Namespace: Math.Mpfr.Native
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.
// 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 = ceil(op). Assert.IsTrue(mpfr_lib.mpfr_ceil(rop, op) == 2); // Assert that the value of rop is 11. Assert.IsTrue(mpfr_lib.mpfr_get_d(rop, mpfr_rnd_t.MPFR_RNDN) == 11.0); // Release unmanaged memory allocated for rop and op. mpfr_lib.mpfr_clears(rop, op, null);