The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
34 views

Multiprecision Python library that plays well with boost::multiprecision or other options?

I am working on a project that revolves around multiprecision "complex" numbers, specifically it's a Mandelbrot Set-based app, but with a twist that requires decent correspondence between the output ...
1
vote
1answer
80 views

libmpfr.so.4 dependency with --disable-shared

everyone! I have the same result ** error while loading shared libraries: libmpfr.so.4: cannot open shared object file: No such file or directory but under another configure : ...
0
votes
1answer
27 views

An error when installing MPFR (3.1.0)

I am trying to install MPFR (3.1.0) with the instructions from this link (part 3) and I get the following error: checking for gmp internal files... configure: error: header files gmp-impl.h and ...
1
vote
0answers
73 views

Using big integers with gmp and machine limits

I wonder if it is possible to use integers bigger than the value of .Machine$double.xmax (~1.79e308) in R. I thought that by using e.g. Rmpfr or gmp libraries in R you could assign values of any size, ...
0
votes
0answers
40 views

makefile not working with c++ zkcm-library - can't find mpfr-functions

I have a makefile for use with some programs using the zkcm-library, including the following object line: zkcm_c.o: zkcm_c.cpp zkcm_c.h config.h g++ -c zkcm_c.cpp -lgmp -lgmpxx -lmpfr The ...
0
votes
1answer
33 views

How to create a makefile to use the mpir and mpfr libraries

I've recently written a C program which uses the public-domain mpir and mpfr libraries. I've been compiling it on Windows, using the Microsoft Visual C++ 10.0 compiler. To get that to work, I had to ...
0
votes
0answers
41 views

How to set --enable-thread-safe for MPFR on Visual studio C++ 2010?

I tried looking around the internet for this, but I've only found information on how to set it on linux.
0
votes
2answers
456 views

long long int on 32-bit Linux vs 64-bit Linux and MPFR

How exactly does a 32-bit Linux system handle long long int compared to 64-bit Linux? On my 32 bit system I use a C++ wrapper for the MPFR data type; this wrapper has a constructor defined for long ...
0
votes
1answer
174 views

gmp, mpc + mpfr: is not symbolic link

I build gcc 4.6.1 and when I run ldconfig it comes back with this result: ldconfig: /usr/local/mpc/lib/libmpc.so.2 is not a symbolic link ldconfig: /usr/local/gmp/lib/libgmp.so.3 is not a symbolic ...
1
vote
1answer
220 views

fast arbitrary precision c++ library: is __float128 faster than MPFR?

I know there are a couple of thread on similar topics ( What's the best (for speed) arbitrary-precision library for C++? and The best cross platform (portable) arbitrary precision math library ) ...
0
votes
1answer
319 views

gcc 4.7.1 build ends with undefined reference

I am getting a fortran/arith.o: In function gfc_mpfr_to_mpz(__mpz_struct*, __mpfr_struct*, locus*)': arith.c:(.text+0x1169): undefined reference tompfr_get_z_2exp' from gcc 4.7.1 build ...
0
votes
0answers
74 views

mpfr_free_cache in destructor - a good idea?

I need arbitrary precision in a C++ program, so I am using the well-known, lightweight C++-wrapper MPFRC++ over the multi-precision floating point C-library MPFR. I have been having memory issues. ...
0
votes
1answer
140 views

How to send GMP or MPFR types with MPI

I trying to send variables of type mpfr_t using MPI_Scatter. For example: mpfr_t *v1 = new mpfr_t[10]; mpfr_t *v2 = new mpfr_t[10]; MPI_Scatter(v1, 5, MPI_BYTE, v2, 5, MPI_BYTE, 0, ...
1
vote
0answers
94 views

complex mpreal with Eigen3

I am trying to use the std::complex< mpfr::mpreal > data type with the Eigen3 linear algebra library. I am using version 3.0.5 of Eigen3, which comes with the "unsupported" MPRealSupport module. ...
3
votes
0answers
85 views

Using MPFR (mpreal) with Eigen3

I've seen on the Eigen3 website that there is an "unsupported" module for MPFR multi-precision data type. Does anyone know how reliable this is? My main goal is not only to use mpreal, but complex ...
5
votes
2answers
230 views

different behaviour or sqrt when compiled with 64 or 32 bits

I'm using sqrt() function from math library, when I build for 64 bit using -m64 I'm getting correct result but when I build for 32 bit I have very inconsistent behaviour. For example on 64bit ...
0
votes
2answers
151 views

what is precision?

I haven't been able to find an answer on Wikipedia (or SO) or in the documentation for this very simple question. How is the precision of a floating point number represented by an integer? I am ...
1
vote
1answer
231 views

Suse Linux - make test for mpfr says libgmp.so.10 can't be found

I set up an ancient machine with SUSE Linux 10.1, and am trying to build a current distro of gcc, but that wants gmp, mprf and mpc. Now, I installed gmp successfully, and I find it in ...
0
votes
1answer
337 views

why disable-shared in gcc 4.7 build together with gmp mpfr mpc for native compile?

enviroment: cpu: XEON NEHALEM E5530 os: SUSE 10 SP2 gcc: 4.1.2 m4,binutils,autoconf,automake: UPDATED newest for required by gcc 4.7 build. PATH/LD_LIBRARY_PATH set correct. object: native ...
1
vote
2answers
382 views

How to use printf with mpfr and mpreal

What is the correct syntax for using printf and its cousins sprintf and fprintf to display the value of mpreal-type variables? I have tried the naive casting to double: printf ("... %g ...", (double) ...
13
votes
3answers
9k views

How to install GCC from scratch with GMP, MPFR, MPC, ELF, without shared libraries?

How do I install GCC (the GNU Compiler Collection) from scratch using the current version, using the correct versions of dependencies, not using a package manager (like yum, rpm, apt, dpkg), and not ...
7
votes
4answers
4k views

Cannot configure gcc - mpfr not found

I'm installing gcc 4.5.2 with mpc 0.8.2, mpfr 3.1.0, and gmp 5.0.2. I've copied each of the mpc, mpfr, and gmp directories into the gcc-4.5.2 directory (removing the version tags). GCC successfully ...
2
votes
1answer
7k views

Building GCC requires GMP 4.2+, MPFR 2.3.1+ and MPC 0.8.0+

I downloaded GCC 4.5 from http://www.netgull.com/gcc/releases/gcc-4.5.0/ but when I try to setup / build I am getting below error: Linux:>~/shared_scripts/bin/gcc/gcc-4.5.0 1040> ...
0
votes
1answer
356 views

How to check the version of GMP, MPFR and CamlIDL?

My question is simple... How could I check the version of GMP installed on my machine? What about MPFR? And What about CamlIDL? Thank you very much
1
vote
1answer
850 views

Compile older version of gcc

I am trying to compile gcc version gcc4.3.2 using gcc version 4.1.2 20080704 (Red Hat 4.1.2-50) on a CentOS 5.5 os. Initially the compiler complained about needing gmp and mpfr libraries which were ...
1
vote
2answers
607 views

Getting MPFR to build on cygwin

I spent the whole day setting up GCC as per http://cygwin.wikia.com/wiki/How_to_install_GCC_4.3.0 On the gcc make step, it told me it needed a c++ compiler to continue for whatever reason, So I ...
0
votes
1answer
163 views

What is the type of mpfr_t and how do I make a C function of this type?

I've just started using the GMP and MPFR. I'm writing a program in C and would like to make a function that (for example) takes as input an mpfr_t variable and returns an mpfr_t variable. I'm not sure ...
1
vote
0answers
728 views

Bad lexical cast to mpreal

I am using boost to compute gamma function, however it uses Lanczos approximation, which contains a lexical cast: boost::lexical_cast<T>("2.50.... I am getting a bad lexical cast exception, ...
3
votes
1answer
194 views

Converting mpfr_t (or any other arbitrary precision library type) to __float128

I guess I have two questions really. 1) I was wondering if anyone knows a way to convert mpfr_t types into __float128 types in GCC. I've looked around and found a thread on the mpfr bugfixes site ...
5
votes
6answers
13k views

GCC cant find GMP, MPFR and MPC libraries

I am trying to cross-compile GCC on Mac OS 10.5.7. I used this command to configure GCC after installing GMP, MPFR, and MPC: ../gcc-4.5.0/configure --target=$i586-elf --prefix=/usr/local/cross \ ...
2
votes
1answer
272 views

MPFR Rounding 0.9999 to 1?

I'm attempting to store the value 0.9999 into an mpfr_t variable using the mpfr_set_str() function But 0.9999 is rounded to 1 (or some other value != 0.9999) during storage, no matter the round value ...
0
votes
1answer
177 views

MPFR rounding issue

I've just started to work with MPFR arbitrary precision library and quite soon encounter very wierd behaviour. The main goal of using it was to improve precision of lagre argument trigs and this works ...
1
vote
5answers
605 views

Platform independent math library

Is there a publically available library that will produce the exact same results for sin, cos, floor, ceil, exp and log on 32 bit and 64 bit linux, solaris and possibly other platforms? I am ...
6
votes
3answers
9k views

Building GMP library with Visual Studio?

Is there an easy way to build the GMP (GNU Multiple Precision Arithmetic Library, http://gmplib.org) under Windows, using Visual Studio 2005? I tried to find information about building the library ...
4
votes
3answers
617 views

Haskell FFI / C MPFR library wrapper woes

In order to create an arbitrary precision floating point / drop in replacement for Double, I'm trying to wrap MPFR using the FFI but despite all my efforts the simplest bit of code doesn't work. It ...