Skip to content

Commit 7aea2b8

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #18678: Implement convolution_product for HopfAlgebras
In the study of Hopf algebras (both graded and finite dimensional), one is led to look at convolution powers of the identity, and convolution products more generally. These should be implemented in `bialgebras.py`. Of possible future utility is the iterated coproduct, so I define that as well. URL: http://trac.sagemath.org/18678 Reported by: alauve Ticket author(s): Aaron Lauve, Jean-Baptiste Priez, Amy Pang, Travis Scrimshaw Reviewer(s): Franco Saliola, Travis Scrimshaw
2 parents 67bce33 + 47d3a1b commit 7aea2b8

8 files changed

+456
-18
lines changed

src/sage/categories/bialgebras.py

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from sage.categories.category_types import Category_over_base_ring
1313
from sage.categories.all import Algebras, Coalgebras
1414
from sage.categories.super_modules import SuperModulesCategory
15+
from sage.misc.lazy_import import LazyImport
1516

1617
class Bialgebras(Category_over_base_ring):
1718
"""
@@ -60,3 +61,5 @@ def additional_structure(self):
6061
class Super(SuperModulesCategory):
6162
pass
6263

64+
WithBasis = LazyImport('sage.categories.bialgebras_with_basis', 'BialgebrasWithBasis')
65+

0 commit comments

Comments
 (0)