mpfr_libmpfr_check_range Method |
Namespace: Math.Mpfr.Native
This function assumes that x is the correctly-rounded value of some real value y in the direction rnd and some extended exponent range, and that t is the corresponding ternary value. For example, one performed t = mpfr_log(x, u, rnd), and y is the exact logarithm of u. Thus t is negative if x is smaller than y, positive if x is larger than y, and zero if x equals y. This function modifies x if needed to be in the current range of acceptable values: It generates an underflow or an overflow if the exponent of x is outside the current allowed range; the value of t may be used to avoid a double rounding. This function returns zero if the new value of x equals the exact one y, a positive value if that new value is larger than y, and a negative value if it is smaller than y. Note that unlike most functions, the new result x is compared to the (unknown) exact one y, not the input value x, i.e., the ternary value is propagated.
Note: If x is an infinity and t is different from zero (i.e., if the rounded result is an inexact infinity), then the overflow flag is set. This is useful because mpfr_check_range is typically called (at least in MPFR functions) after restoring the flags that could have been set due to internal computations.
// Create, initialize, and set a new floating-point number x to 0.100146. mpfr_t x = new mpfr_t(); mpfr_lib.mpfr_init2(x, 64U); Assert.IsTrue(mpfr_lib.mpfr_set_d(x, 0.100146, mpfr_rnd_t.MPFR_RNDN) == 0); // Assert that return value is -1. Assert.IsTrue(mpfr_lib.mpfr_check_range(x, -1, mpfr_rnd_t.MPFR_RNDZ) == -1); // Release unmanaged memory allocated for x. mpfr_lib.mpfr_clear(x);