]> gitweb.michael.orlitzky.com - sage.d.git/commit
eja: remove the cached product_on_basis() TODO.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 10 Mar 2021 00:08:47 +0000 (19:08 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 10 Mar 2021 00:08:47 +0000 (19:08 -0500)
commit8d91b5b5af605dabe11a024ab030f2fcb2828cde
tree1cbdedcb917cb0ca2d91c084e78307e432710616
parentbc02bf48592e22d034310cfffef8fb2a062c0a43
eja: remove the cached product_on_basis() TODO.

Storing the multiplication table in a list is actually faster than the
@cached_method dict lookup. I tried it. In general, l[i][j] is about
twice as fast as d[(i,j)] for a nested list "l" and dict "d".
mjo/eja/TODO