From 852c32e6db3d27310489abd9e23787a1b7d068ad Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 2 Aug 2019 16:20:33 -0400 Subject: [PATCH] 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). --- mjo/eja/eja_subalgebra.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.43.2