X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mjo%2Feja%2Feuclidean_jordan_algebra.py;h=30881da2bf696d01b51b6d159cb005f3a9459728;hb=581b25d4af5dd7a287c9c3c11d74c6157958c3e1;hp=5f9d5ba22435bb4c0de7391b35f18bc4d00d53fd;hpb=9717e0fafb2995a3a4d28fd76aafb70473089991;p=sage.d.git diff --git a/mjo/eja/euclidean_jordan_algebra.py b/mjo/eja/euclidean_jordan_algebra.py index 5f9d5ba..30881da 100644 --- a/mjo/eja/euclidean_jordan_algebra.py +++ b/mjo/eja/euclidean_jordan_algebra.py @@ -967,8 +967,8 @@ class FiniteDimensionalEuclideanJordanAlgebra(FiniteDimensionalAlgebra): if not other in self.parent(): raise TypeError("'other' must live in the same algebra") - A = self.operator_matrix() - B = other.operator_matrix() + A = self.operator() + B = other.operator() return (A*B == B*A)