mpfr_libmpfr_init2 Method |
Namespace: Math.Mpfr.Native
(Warning: the corresponding MPF function initializes to zero instead.)
Normally, a variable should be initialized once only or at least be cleared, using mpfr_clear, between initializations. To change the precision of a variable which has already been initialized, use mpfr_set_prec. The precision prec must be an integer between MPFR_PREC_MIN and MPFR_PREC_MAX (otherwise the behavior is undefined).
// 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); // Assert that the value of x is NaN, and that its precision is 64 bits. Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0); uint p = mpfr_lib.mpfr_get_prec(x); Assert.IsTrue(mpfr_lib.mpfr_get_prec(x) == 64U); // Release unmanaged memory allocated for x. mpfr_lib.mpfr_clear(x);