MPFR
MPFR is the Multiple Precision Floating-Point Reliable Library, a C library for arbitrary-precision floating-point arithmetic with correctly rounded results. It provides a portable API for computations at any precision and is built on top of the GNU Multiple Precision Arithmetic Library (GMP), leveraging GMP’s arithmetic routines for integers and memory management.
The library is designed to guarantee correct rounding of every operation to the specified working precision.
The core data type is mpfr_t. Initialization routines include mpfr_init and mpfr_init2 to specify precision; values
Implementation and license: MPFR relies on GMP for the underlying arithmetic and memory handling. It is designed
Use and applications: MPFR is widely used in numerical analysis, computational number theory, computer algebra systems,