mpfr_libmpfr_fpif_export Method |
Namespace: Math.Mpfr.Native
In particular one can export on a 32-bit computer and import on a 64-bit computer, or export on a little-endian computer and import on a big-endian computer. The precision of op and the sign bit of a NaN are stored too.
Note: this function is experimental and its interface might change in future versions.
// Create, initialize, and set the value of op to 123456. mpfr_t op = new mpfr_t(); mpfr_lib.mpfr_init2(op, 64U); mpfr_lib.mpfr_set_ui(op, 123456U, mpfr_rnd_t.MPFR_RNDN); // Get a temporary file. string pathname = System.IO.Path.GetTempFileName(); // Open temporary file for writing. ptr<FILE> stream = new ptr<FILE>(); _wfopen_s(out stream.Value.Value, pathname, "w"); // Export op to temporary file. Assert.IsTrue(mpfr_lib.mpfr_fpif_export(stream, op) == 0); fclose(stream.Value.Value); // Read op from the temporary file. mpfr_lib.mpfr_set_ui(op, 0, mpfr_rnd_t.MPFR_RNDN); stream = new ptr<FILE>(); _wfopen_s(out stream.Value.Value, pathname, "r"); Assert.IsTrue(mpfr_lib.mpfr_fpif_import(op, stream) == 0); fclose(stream.Value.Value); // Assert that op is 123456. Assert.IsTrue(mpfr_lib.mpfr_get_ui(op, mpfr_rnd_t.MPFR_RNDN) == 123456U); // Delete temporary file. System.IO.File.Delete(pathname); // Release unmanaged memory allocated for op. mpfr_lib.mpfr_clear(op);