Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
5k 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
532 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 ...
3
votes
1answer
136 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 ...
2
votes
5answers
5k 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 \ ...
1
vote
1answer
172 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
1answer
100 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 ...
1
vote
0answers
371 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, ...
1
vote
1answer
160 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 ...
1
vote
5answers
386 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 ...
0
votes
0answers
7 views

How can I get vs static lib for win from linux source package?

I gonna use mpfr lib on windows. But I only find the mpfr.lib without mpfr.fdb. So when I compile my program ,there is warning LNK4099. Then I plan to compile the source package to get mpfr.fdb. ...
0
votes
1answer
67 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
0
votes
1answer
58 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 ...
0
votes
1answer
96 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 ...