From: Michael Orlitzky Date: Mon, 24 Jun 2019 16:05:04 +0000 (-0400) Subject: eja: remove an erroneous comment. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=6db5d3bdea85cdc88c4dcdce1a75b888d1c4f1d8;hp=bb8418eb800cae28a844f40b5f04480d64b2250b;p=sage.d.git eja: remove an erroneous comment. --- diff --git a/mjo/eja/euclidean_jordan_algebra.py b/mjo/eja/euclidean_jordan_algebra.py index 52e1383..08bce5f 100644 --- a/mjo/eja/euclidean_jordan_algebra.py +++ b/mjo/eja/euclidean_jordan_algebra.py @@ -122,9 +122,6 @@ def eja_rn(dimension, field=QQ): Qs = [ matrix(field, dimension, dimension, lambda k,j: 1*(k == j == i)) for i in xrange(dimension) ] - # Assuming associativity is wrong here, but it works to - # temporarily trick the Jordan algebra constructor into using the - # multiplication table. return FiniteDimensionalEuclideanJordanAlgebra(field,Qs)