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