Questions tagged [mpfi]

MPFI is a C library for multiple precision arithmetic intervals based on MPFR and GMP libraries.

MPFI is a C library for multiple precision arithmetic intervals based on MPFR and GMP libraries.

3 questions
2
votes
2 answers

Correct way to restrict functions to specific data types

I am currently working with the following data types in c++: double, boost::interval< double >, and boost's mpfr/mpfi types (mpfr_float, mpfr_float_50, ..., mpfi_float, mpfi_float_50, ...) I am writing some overloaded functions for any pair of these…
Michael Burr
  • 199
  • 10
2
votes
2 answers

How can I install MPFI library in Windows?

there! I'd like to execute example program, Surface_reconstruction_points_3. I think the program needs additionally 3rd library, MPFI. So I downloaded the library from http://mpfi.gforge.inria.fr/. And I unzipped it at proper folder and linked it to…
1
vote
0 answers

When have enough bits of my series with non-negative terms been calculated?

I have a power series with all terms non-negative which I want to evaluate to some arbitrarily set precision p (the length in binary digits of a MPFR floating-point mantissa). The result should be faithfully rounded. The issue is that I don't know…
user2373145
  • 332
  • 2
  • 14