]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: adjust some test output for the new basis ordering.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 2 Aug 2019 20:20:33 +0000 (16:20 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 2 Aug 2019 20:20:33 +0000 (16:20 -0400)
Now that we're using span_of_basis() everywhere instead of accepting
whatever reordering span() gives us, this output has changed (harmlessly).

mjo/eja/eja_subalgebra.py

index a774b985ff54a2ceeb01468b5887849a22ef2d65..7971e15a095a9a5e4a246bc89fbdf90cb5e97d94 100644 (file)
@@ -207,15 +207,15 @@ class FiniteDimensionalEuclideanJordanElementSubalgebra(FiniteDimensionalEuclide
             sage: K.vector_space()
             Vector space of degree 6 and dimension 3 over Rational Field
             User basis matrix:
-            [ 1  0  0  1  0  1]
+            [ 1  0  1  0  0  1]
             [ 0  1  2  3  4  5]
-            [ 5 11 14 26 34 45]
+            [10 14 21 19 31 50]
             sage: (x^0).to_vector()
-            (1, 0, 0, 1, 0, 1)
+            (1, 0, 1, 0, 0, 1)
             sage: (x^1).to_vector()
             (0, 1, 2, 3, 4, 5)
             sage: (x^2).to_vector()
-            (5, 11, 14, 26, 34, 45)
+            (10, 14, 21, 19, 31, 50)
 
         """
         return self._vector_space