-
An example (assuming CPython float's are IEEE 754 doubles):
```pycon
>>> x=225_188_150_488_381_457
>>> float(x)
2.2518815048838147e+17
>>> float(mpz(x))
2.2518815048838144e+17
```
I didn't tes…
-
Hey! I want to update the RcppCGAL package to support the CGAL 6.0.1 header files; however, it looks like one of the includes in your header files now needs mpfr (let me know if this is correct but I…
-
I've implemented `powi` without the use of MPFR, using repeated squaring (distinguishing cases according to the sign of the interval bounds). It is 4.5–5 times faster than the MPFR version — somethin…
-
**Describe the bug**
I'm trying to build on Mac M2 using the provided instructions. I have installed 'gmp' using brew as described but the 'make' step fails.
However, if I remove the Cargo.toml "u…
-
### Comment:
Recent mpfr 4.2.1 builds for win64 like hbc20e70_3 distribute mpfr as libmpfr-6.dll, while a bit older builds like h64bf75a_1 distribute mpfr.dll and mpfr-6.dll. This change in dll names…
-
### Solution to issue cannot be found in the documentation.
- [x] I checked the documentation.
### Issue
Hello!
I have a conda-forge package that used to depend (on Windows) on MPIR. As suggested …
-
After installing mpfr it doesn't seem to work well.
This simple program:
```
#include
#include
#include
int main() {
std::cout
-
**To Reproduce**
Using cmake-init template with and without:
```
find_package(CGAL CONFIG REQUIRED)
target_link_libraries(main PRIVATE CGAL::CGAL)
```
Running `cd target/build && ctest --output-on-f…
-
When using mpfrs at high precision (> 2 ** 30 bits) algorithms fail. I have verified that mpfr works as expected using a C++ wrapper and test pi agm code. Using very similar code with gmpy, the code…
-
Hello,
I'm having a problem with the compilation of MPFR under raspberry PI 3B with the buster version. During the compilation I encounter an error. I reinstall the compilation packages but nothing i…