From: Michael Orlitzky Date: Mon, 5 Aug 2019 01:07:23 +0000 (-0400) Subject: eja: store the multiplication table as a matrix. X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=98c3ab3a9df8c634a0fbb05ed6ad22abf41118f3;p=sage.d.git eja: store the multiplication table as a matrix. This way, we don't need to either regenerate it when someone calls multiplication_table(), or cache a second copy of it. Besides, matrices are efficient and indexing one is probably faster than indexing a list of lists. --- diff --git a/mjo/eja/eja_algebra.py b/mjo/eja/eja_algebra.py index 8fe3a3c..a7bccc3 100644 --- a/mjo/eja/eja_algebra.py +++ b/mjo/eja/eja_algebra.py @@ -64,8 +64,10 @@ class FiniteDimensionalEuclideanJordanAlgebra(CombinatorialFreeModule): # long run to have the multiplication table be in terms of # algebra elements. We do this after calling the superclass # constructor so that from_vector() knows what to do. - self._multiplication_table = [ map(lambda x: self.from_vector(x), ls) - for ls in mult_table ] + self._multiplication_table = matrix( + [ map(lambda x: self.from_vector(x), ls) + for ls in mult_table ] ) + self._multiplication_table.set_immutable() def _element_constructor_(self, elt): @@ -153,7 +155,7 @@ class FiniteDimensionalEuclideanJordanAlgebra(CombinatorialFreeModule): return fmt.format(self.dimension(), self.base_ring()) def product_on_basis(self, i, j): - return self._multiplication_table[i][j] + return self._multiplication_table[i,j] def _a_regular_element(self): """ @@ -249,8 +251,9 @@ class FiniteDimensionalEuclideanJordanAlgebra(CombinatorialFreeModule): R = PolynomialRing(self.base_ring(), names) # Hack around the fact that our multiplication table is in terms of # algebra elements but the constructor wants it in terms of vectors. - vmt = [ tuple(map(lambda x: x.to_vector(), ls)) - for ls in self._multiplication_table ] + vmt = [ tuple([ self._multiplication_table[i,j].to_vector() + for j in range(self._multiplication_table.nrows()) ]) + for i in range(self._multiplication_table.ncols()) ] J = FiniteDimensionalEuclideanJordanAlgebra(R, tuple(vmt), r) idmat = matrix.identity(J.base_ring(), n) @@ -411,7 +414,7 @@ class FiniteDimensionalEuclideanJordanAlgebra(CombinatorialFreeModule): [e2 0 e0] """ - return matrix(self._multiplication_table) + return self._multiplication_table def natural_basis(self):