X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mjo%2Feja%2Feuclidean_jordan_algebra.py;h=e2d644a903d8eca09a585064f96e31278197e4d6;hb=2a3d7383e72864ac42a532c6c4250cdc45b4c363;hp=c0b7787a535b7754c446fcb0046c300b21695579;hpb=6ca4fb6c40e9e8f65eec8cafd0044992fae79f02;p=sage.d.git diff --git a/mjo/eja/euclidean_jordan_algebra.py b/mjo/eja/euclidean_jordan_algebra.py index c0b7787..e2d644a 100644 --- a/mjo/eja/euclidean_jordan_algebra.py +++ b/mjo/eja/euclidean_jordan_algebra.py @@ -414,7 +414,7 @@ class FiniteDimensionalEuclideanJordanAlgebra(FiniteDimensionalAlgebra): return self.span_of_powers().dimension() - def matrix(self): + def operator_matrix(self): """ Return the matrix that represents left- (or right-) multiplication by this element in the parent algebra. @@ -480,13 +480,6 @@ class FiniteDimensionalEuclideanJordanAlgebra(FiniteDimensionalAlgebra): fda_elt = FiniteDimensionalAlgebraElement(self.parent(), self) return fda_elt.matrix().transpose() - # - # The plan is to eventually phase out "matrix()", which sounds - # too much like "matrix_representation()", in favor of the more- - # accurate "operator_matrix()". But we need to override matrix() - # to keep parent class methods happy in the meantime. - # - operator_matrix = matrix def minimal_polynomial(self):