X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mjo%2Feja%2Feja_subalgebra.py;h=d7bcf2c3a59638ef8a4176a7ae0dba2a422e6af2;hb=16c76a123e1657907d4559518fbb4ea0ef9a8e2f;hp=045c16e7ed691532e016c89192a43903bc0cc7ce;hpb=95e949d3fc11b55d39cb3b77a5ec53270c271e1f;p=sage.d.git diff --git a/mjo/eja/eja_subalgebra.py b/mjo/eja/eja_subalgebra.py index 045c16e..d7bcf2c 100644 --- a/mjo/eja/eja_subalgebra.py +++ b/mjo/eja/eja_subalgebra.py @@ -130,7 +130,7 @@ class FiniteDimensionalEuclideanJordanSubalgebra(FiniteDimensionalEuclideanJorda 1 """ - def __init__(self, superalgebra, basis, category=None): + def __init__(self, superalgebra, basis, category=None, check=True): self._superalgebra = superalgebra V = self._superalgebra.vector_space() field = self._superalgebra.base_ring() @@ -179,7 +179,8 @@ class FiniteDimensionalEuclideanJordanSubalgebra(FiniteDimensionalEuclideanJorda mult_table, prefix=prefix, category=category, - natural_basis=natural_basis) + natural_basis=natural_basis, + check=check)