From: Michael Orlitzky Date: Fri, 2 Aug 2019 20:20:33 +0000 (-0400) Subject: eja: adjust some test output for the new basis ordering. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=852c32e6db3d27310489abd9e23787a1b7d068ad eja: adjust some test output for the new basis ordering. Now that we're using span_of_basis() everywhere instead of accepting whatever reordering span() gives us, this output has changed (harmlessly). --- diff --git a/mjo/eja/eja_subalgebra.py b/mjo/eja/eja_subalgebra.py index a774b98..7971e15 100644 --- a/mjo/eja/eja_subalgebra.py +++ b/mjo/eja/eja_subalgebra.py @@ -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