-
-
Notifications
You must be signed in to change notification settings - Fork 673
Open
Description
In this patch truncated multiplication of dense polynomials is
used in PowerSeries_poly
multiplication.
in Sage-4.6 on my computer with Intel Core i7 2.8GHz
sage: R.<a,b> = QQ[]
sage: K.<t> = PowerSeriesRing(R)
sage: time p1 = (1 + a*t + b*t^2 + O(t^50))^-40
Wall time: 7.62s
with this patch it takes 0.12s
The speed-up increases with the number of variables and with the precision.
Apply: trac_10480_fast_PowerSeries_poly_multiplication-alternative.patch
Depends on #10255
CC: @nilesjohnson @zimmermann6
Component: commutative algebra
Keywords: power series
Author: Mario Pernici, Luis Felipe Tabera Alonso
Branch/Commit: public/ticket/10480 @ e2cdc54
Issue created by migration from https://trac.sagemath.org/ticket/10480