From: Michael Orlitzky Date: Fri, 26 Feb 2021 17:34:17 +0000 (-0500) Subject: eja: fix two more test typos. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=f85bca2ff71a537c82fae3736944ce8896c30251 eja: fix two more test typos. --- diff --git a/mjo/eja/eja_algebra.py b/mjo/eja/eja_algebra.py index 60a23c8..ad619f6 100644 --- a/mjo/eja/eja_algebra.py +++ b/mjo/eja/eja_algebra.py @@ -3213,6 +3213,7 @@ class CartesianProductEJA(CombinatorialFreeModule_CartesianProduct, ....: == ....: J.gens()[J._monomial_to_generator(m)] ....: for m in J.basis().keys() ) + True """ # The superclass method indexes into a matrix, so we have to @@ -3254,7 +3255,7 @@ class CartesianProductEJA(CombinatorialFreeModule_CartesianProduct, sage: list(K2.basis()) [e(0, (0, 0)), e(0, (0, 1)), e(0, (1, 0)), e(0, (1, 1)), e(0, (1, 2)), e(1, 0)] - sage: sage: g = K2.gens() + sage: g = K2.gens() sage: (g[0] + 2*g[3]) * (g[1] - 4*g[2]) e(0, (0, 1)) - 4*e(0, (1, 1))