Changes between Version 3 and Version 14 of Ticket #14878
- Timestamp:
- 10/15/16 14:41:26 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14878
-
Property
Milestone
changed from
sage-6.1
tosage-7.5
-
Property
Dependencies
changed from
to
pynac-0.7.0
-
Property
Report Upstream
changed from
N/A
toFixed upstream, in a later stable release.
-
Property
Milestone
changed from
-
Ticket #14878 – Description
v3 v14 1 Pynac-0.7.0 uses Flint to get univariate series expansions. For comparison, 2 {{{ 3 now previously 4 sin(x*sin(x*sin(x*sin(x)))).series(x,8) 50-55µs 13.7s 5 sin(x*sin(x*sin(x*sin(x)))).series(x,12) 69µs >1min 6 sin(x*exp(x)).series(x,100) 3.7ms 11.3s 7 sin(x*exp(x)).series(x,500) 215ms n/a 8 (sin(x+x^2)*cos(x+x^2)).series(x,1000) 2.86s n/a 9 }}} 10 11 This ticket should add extensive tests, probably a file under `test/`. It can take some cases from Symengine. 12 13 Previous ticket description: 14 1 15 The following 2 16 {{{