Click or drag to resize
mpfr_libmpfr_prec_round Method
Round x according to rnd with precision prec, which must be an integer between MPFR_PREC_MIN and MPFR_PREC_MAX (otherwise the behavior is undefined).

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_prec_round(
	mpfr_t x,
	mpfr_prec_t prec,
	mpfr_rnd_t rnd
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
prec
Type: Math.Mpfr.Nativempfr_prec_t
The precision in bits.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Return zero, a positive, or a negative value if x is respectively equal to, greater than, or lower than the exact result. See GNU MPFR - Rounding Modes for details.
Remarks

If prec is greater or equal to the precision of x, then new space is allocated for the significand, and it is filled with zeros. Otherwise, the significand is rounded to precision prec with the given direction. In both cases, the precision of x is changed to prec.

Here is an example of how to use mpfr_prec_round to implement Newton’s algorithm to compute the inverse of a, assuming x is already an approximation to n bits:

C#
mpfr_set_prec (t, 2 * n);
mpfr_set(t, a, mpfr_rnd_t.MPFR_RNDN);            /* round a to 2n bits */
mpfr_mul(t, t, x, mpfr_rnd_t.MPFR_RNDN);         /* t is correct to 2n bits */
mpfr_ui_sub(t, 1, t, mpfr_rnd_t.MPFR_RNDN);      /* high n bits cancel with 1 */
mpfr_prec_round(t, n, mpfr_rnd_t.MPFR_RNDN);     /* t is correct to n bits */
mpfr_mul(t, t, x, mpfr_rnd_t.MPFR_RNDN);         /* t is correct to n bits */
mpfr_prec_round(x, 2 * n, mpfr_rnd_t.MPFR_RNDN); /* exact */
mpfr_add(x, x, t, mpfr_rnd_t.MPFR_RNDN);         /* x is correct to 2n bits */

Warning! You must not use this function if x was initialized with mpfr_custom_init_set (see GNU MPFR - Custom Interface).

Examples
// Create and initialize a new floating-point number x with 64-bit precision.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 64U);

// Round x to precision 128 bits.
Assert.IsTrue(mpfr_lib.mpfr_prec_round(x, 128U, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert that precision has changed to 128 bits.
Assert.IsTrue(mpfr_lib.mpfr_get_prec(x) == 128U);

// Release unmanaged memory allocated for x.
mpfr_lib.mpfr_clear(x);
See Also