mpfr_libmpfr_inits Method |
Namespace: Math.Mpfr.Native
See mpfr_init for more details. The list of floating-point numbers ends when it encounters a null pointer (whose type must also be mpfr_t).
Warning! In a given program, some other libraries might change the default precision and not restore it. Thus it is safer to use mpfr_inits2.
// Create new floating-point numbers x1, x2 and x3. mpfr_t x1 = new mpfr_t(); mpfr_t x2 = new mpfr_t(); mpfr_t x3 = new mpfr_t(); // Initialize the floating-point numbers. mpfr_lib.mpfr_inits(x1, x2, x3, null); // Assert that their value is 0. Assert.IsTrue(mpfr_lib.mpfr_nan_p(x1) != 0); Assert.IsTrue(mpfr_lib.mpfr_nan_p(x2) != 0); Assert.IsTrue(mpfr_lib.mpfr_nan_p(x3) != 0); // Release unmanaged memory allocated for the floating-point numbers. mpfr_lib.mpfr_clears(x1, x2, x3, null);