Click or drag to resize
mpfr_libmpfr_set_prec_raw Method
Reset the precision of x to be exactly prec bits.

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 void mpfr_set_prec_raw(
	mpfr_t x,
	mpfr_prec_t prec
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
prec
Type: Math.Mpfr.Nativempfr_prec_t
The precision in bits.
Remarks

The only difference with mpfr_set_prec is that prec is assumed to be small enough so that the significand fits into the current allocated memory space for x. Otherwise the behavior is undefined.

Examples
// Create, initialize, and set a new rational y to 200 / 3.
mpq_t y = new mpq_t();
gmp_lib.mpq_init(y);
gmp_lib.mpq_set_ui(y, 200, 3U);

// Create, initialize, and set a new floating-point number x to y.
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_init2(x, 128U);
Assert.IsTrue(mpfr_lib.mpfr_set_q(x, y, mpfr_rnd_t.MPFR_RNDN) == -1);

Assert.IsTrue(x.ToString() == "0.6666666666666666666666666666666666666654e2");

// Change precision of x, and set its value to 10000 / 3.
mpfr_lib.mpfr_set_prec_raw(x, 8U);
gmp_lib.mpq_set_ui(y, 10000, 3U);
Assert.IsTrue(mpfr_lib.mpfr_set_q(x, y, mpfr_rnd_t.MPFR_RNDN) == -1);

Assert.IsTrue(x.ToString() == "0.3328e4");

// Restore precision of x.
mpfr_lib.mpfr_set_prec_raw(x, 128U);

// Release unmanaged memory allocated for x and y.
mpfr_lib.mpfr_clear(x);
gmp_lib.mpq_clear(y);
See Also