]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
mjo/eja/eja_subalgebra.py: block-scoped "long time" tags
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 22 Nov 2024 22:00:14 +0000 (17:00 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 22 Nov 2024 22:13:00 +0000 (17:13 -0500)
mjo/eja/eja_subalgebra.py

index 97a79789750197fafbb39e8e3fd9e1a7710e98d3..d38565b039e62db4435cd4318bfe1485905d7f08 100644 (file)
@@ -28,10 +28,11 @@ class EJASubalgebraElement(EJAElement):
     works like it does in the superalgebra, even if we orthonormalize
     our basis::
 
-        sage: x = random_eja(field=AA).random_element()           # long time
-        sage: A = x.subalgebra_generated_by(orthonormalize=True)  # long time
-        sage: y = A.random_element()                              # long time
-        sage: y.operator()(A.one()) == y                          # long time
+        sage: # long time
+        sage: x = random_eja(field=AA).random_element()
+        sage: A = x.subalgebra_generated_by(orthonormalize=True)
+        sage: y = A.random_element()
+        sage: y.operator()(A.one()) == y
         True
 
     """