From: Michael Orlitzky Date: Thu, 25 Feb 2021 23:44:36 +0000 (-0500) Subject: eja: don't check the field/axioms in element subalgebras. YOLO. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=958623afecbcfa2f0a7daa0bdaab458814e8e4a6 eja: don't check the field/axioms in element subalgebras. YOLO. --- diff --git a/mjo/eja/eja_element.py b/mjo/eja/eja_element.py index 5a2ff5a..b5f661b 100644 --- a/mjo/eja/eja_element.py +++ b/mjo/eja/eja_element.py @@ -1450,7 +1450,11 @@ class FiniteDimensionalEJAElement(IndexedFreeModuleElement): """ powers = tuple( self**k for k in range(self.degree()) ) - A = self.parent().subalgebra(powers, associative=True, **kwargs) + A = self.parent().subalgebra(powers, + associative=True, + check_field=False, + check_axioms=False, + **kwargs) A.one.set_cache(A(self.parent().one())) return A