From: Michael Orlitzky Date: Wed, 10 Mar 2021 00:08:47 +0000 (-0500) Subject: eja: remove the cached product_on_basis() TODO. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=8d91b5b5af605dabe11a024ab030f2fcb2828cde;hp=8d91b5b5af605dabe11a024ab030f2fcb2828cde;p=sage.d.git 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". ---