From: Michael Orlitzky Date: Sat, 21 Nov 2020 00:20:45 +0000 (-0500) Subject: eja: don't orthonormalize the basis when computing minimal polynomials. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=ce40356d28ec29ebc9bd883ecc6a79c4f0d18e87;p=sage.d.git eja: don't orthonormalize the basis when computing minimal polynomials. --- diff --git a/mjo/eja/eja_element.py b/mjo/eja/eja_element.py index 2322773..2bf7aa2 100644 --- a/mjo/eja/eja_element.py +++ b/mjo/eja/eja_element.py @@ -953,7 +953,7 @@ class FiniteDimensionalEuclideanJordanAlgebraElement(IndexedFreeModuleElement): # in the "normal" case without us having to think about it. return self.operator().minimal_polynomial() - A = self.subalgebra_generated_by() + A = self.subalgebra_generated_by(orthonormalize_basis=False) return A(self).operator().minimal_polynomial()