Click or drag to resize
mpfr_libmpfr_fpif_import Method

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 int mpfr_fpif_import(
	mpfr_t op,
	ptr<FILE> stream
)

Parameters

op
Type: Math.Mpfr.Nativempfr_t
The imported floating-point number.
stream
Type: Math.Gmp.NativeptrFILE
The input stream.

Return Value

Type: Int32
Return 0 iff the import was successful.
Remarks

Note that the precision of op is set to the one read from the stream, and the sign bit is always retrieved (even for NaN). If the stored precision is zero or greater than MPFR_PREC_MAX, the function fails (it returns non-zero) and op is unchanged. If the function fails for another reason, op is set to NaN and it is unspecified whether the precision of op has changed to the one read from the file.

Note: this function is experimental and its interface might change in future versions.

Examples
// 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);
See Also