Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/algebras/all.py
4096 views
1
"""
2
Algebras
3
"""
4
5
#*****************************************************************************
6
# Copyright (C) 2005 William Stein <[email protected]>
7
#
8
# Distributed under the terms of the GNU General Public License (GPL)
9
#
10
# This code is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
# General Public License for more details.
14
#
15
# The full text of the GPL is available at:
16
#
17
# http://www.gnu.org/licenses/
18
#*****************************************************************************
19
20
from quatalg.all import *
21
22
# Algebra base classes
23
from algebra import Algebra, is_Algebra
24
25
# Ring element base classes
26
from algebra_element import AlgebraElement, is_AlgebraElement
27
28
29
from free_algebra import FreeAlgebra, is_FreeAlgebra
30
from free_algebra_quotient import FreeAlgebraQuotient
31
32
from steenrod.all import *
33
34
from group_algebra_new import GroupAlgebra
35
36
from iwahori_hecke_algebra import IwahoriHeckeAlgebraT
37
from affine_nil_temperley_lieb import AffineNilTemperleyLiebTypeA
38
from nil_coxeter_algebra import NilCoxeterAlgebra
39
40