-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mpfr-3.0 breaks real_mpfr.pyx #13
Comments
Same here on x86 - looks like Sage needs some work on it |
Works fine on amd64. |
http://trac.sagemath.org/sage_trac/ticket/11666 not ready for inclusion as the 32bit issue is still not resolved. |
#11666 was merged in Sage-5.0.beta7. I guess this issue can be closed. |
I'll close it when 5.0 becomes "stable". In the main time I am keeping it open so people using 4.8 don't find it and open an issue for it. We could always backport it to sage-4.8 if 5.0 takes too long I guess. |
OK, as promised I am closing this. I'll probably purge sage 4.8 next week somewhere in my increasingly insane schedule. |
After updating everything to mpfr-3.0 I got a nasty doctest failure:
The hunt revealed that the failure comes from this particular test:
It could be caused by some memory constraint on my machine,
may be mpfr uses more memory. This particular value is 2^31-1 and
is meant to be the maximum precision that can be set for mpfr.
A few test show that on my machine the correct value is 2^31-2^5,
that is 2^31-2^5+1 leads to the segfault while the previous value is safe.
The text was updated successfully, but these errors were encountered: