From: Michael Orlitzky Date: Wed, 2 Feb 2022 23:43:47 +0000 (-0500) Subject: eja: use QQ for another potentially slow doctest. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=07d8d3f5ce02c2d2693244d541561f264b5037c7 eja: use QQ for another potentially slow doctest. --- diff --git a/mjo/eja/eja_element.py b/mjo/eja/eja_element.py index bc253d4..0983ea0 100644 --- a/mjo/eja/eja_element.py +++ b/mjo/eja/eja_element.py @@ -1425,7 +1425,7 @@ class FiniteDimensionalEJAElement(IndexedFreeModuleElement): where there are non-nilpotent elements, or that we get the dumb solution in the trivial algebra:: - sage: J = random_eja() + sage: J = random_eja(field=QQ, orthonormalize=False) sage: x = J.random_element() sage: while x.is_nilpotent() and not J.is_trivial(): ....: x = J.random_element()