mpfr_libmpfr_set_default_prec Method |
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void mpfr_set_default_prec(
mpfr_prec_t prec
)
Public Shared Sub mpfr_set_default_prec (
prec As mpfr_prec_t
)
public:
static void mpfr_set_default_prec(
mpfr_prec_t prec
)
static member mpfr_set_default_prec :
prec : mpfr_prec_t -> unit
Parameters
- prec
- Type: Math.Mpfr.Nativempfr_prec_t
The new default precision in bits.
Remarks
The precision of a variable means the number of bits used to store its significand.
All subsequent calls to mpfr_init or mpfr_inits will use this precision,
but previously initialized variables are unaffected.
The default precision is set to 53 bits initially.
Note: when MPFR is built with the --enable-thread-safe configure option (mpfr_buildopt_tls_p), the default precision is local to each thread.
See GNU MPFR - Memory Handling, for more information.
Examples
mpfr_lib.mpfr_set_default_prec(128U);
Assert.IsTrue(mpfr_lib.mpfr_get_default_prec() == 128U);
mpfr_lib.mpfr_set_default_prec(128U)
Assert.IsTrue(mpfr_lib.mpfr_get_default_prec() = 128U)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also