Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagemath.github.io
Path: blob/master/changelogs/sage-2.8.4.txt
2457 views
1
#
2
3
This release is another one that concentrates on fixing bugs and increasing the doctests coverage. Many people contributed and a great number of tickets were closed.
4
5
* Craig Citro -- fixes to build process (involving c_lib)
6
* Craig Citro -- modular forms bugfix (for projection map); added some number fields functionality, many new doctests
7
* Pablo De Napoli (refereed by Martin Albrecht) -- added minpoly for finite field elements.
8
* Robert Bradshaw (and William Stein) -- created a separate java3d spkg
9
* Mike Hansen -- lots of Bug fixes all over the place
10
* Michael Abshoff -- bug fixes, improved valgrind support, Solaris port fixes
11
* William Stein -- bug fixes and lots more doctests, added coverage flag for doctests, improvements to the build process (SCons not rebuilding issue)
12
* William Stein, Michael Abshoff, Martin Albrecht, Robert Bradshaw, Burcin Erocal, Joel B. Mohler: memleak fixes
13
* Timothy Clemans -- bug fix for the notebook
14
* Tom Boothby -- bug fixes for the notebook, various other fixes
15
* David Harvey: bug fixes, integration of vastly improved gcd code from gmplib.org/devel, AMD64 specific assembly code:
16
17
sage: a = ZZ.random_element(2^10000000); b = ZZ.random_element(2^10000000);
18
sage: time t = XGCD(a, b)
19
CPU times: user 16.03 s, sys: 0.39 s, total: 16.42 s
20
21
With 2.8.3 and the old gmp package this took about 900 seconds
22
23