You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That Pynac version has:
* fix for: `assume(x>0)` sets integer flag (#20456)
* fix Maxima crashes by implementing fast Hermite (#20297) and
Gegenbauer (#20428) polynomials in Pynac
* some fixes to handling of elements of rings with positive
characteristics (#20162)
* Python 3 build fix
* automatic trigonometric and log simplifications
https://github.com/pynac/pynac/releases/download/pynac-0.6.5/pynac-0.6.5
.tar.bz2
URL: http://trac.sagemath.org/20475
Reported by: rws
Ticket author(s): Ralf Stephan, Benjamin Hackl, Aaditya Thakkar
Reviewer(s): Eric Gourgoulhon, Volker Braun
sage: all(sin(rat*pi).n(200)-sin(rat*pi,hold=True).n(200) < 1e-30 for rat in [1/5,2/5,1/30,7/30,11/30,13/30,1/8,3/8,1/24,5/24,7/24,11/24])
74
86
True
75
87
sage: all(cos(rat*pi).n(200)-cos(rat*pi,hold=True).n(200) < 1e-30 for rat in [1/10,3/10,1/12,5/12,1/15,2/15,4/15,7/15,1/8,3/8,1/24,5/24,11/24])
76
88
True
77
89
sage: all(tan(rat*pi).n(200)-tan(rat*pi,hold=True).n(200) < 1e-30 for rat in [1/5,2/5,1/10,3/10,1/20,3/20,7/20,9/20,1/8,3/8,1/16,3/16,5/16,7/16,1/24,5/24,7/24,11/24])
0 commit comments