On Sun, May 22, 2011 at 11:37:17AM +0200, Christian Nassau wrote:
> Thanks a lot for these hints! I need to implement a category of
> multi-graded modules/algebras over a Hopf algebra (the Steenrod
> algebra, specifically), so I thought subclassing AlgebrasWithBasis
> would be a good idea... I've n
Hi Nicolas,
Thanks a lot for these hints! I need to implement a category of
multi-graded modules/algebras over a Hopf algebra (the Steenrod algebra,
specifically), so I thought subclassing AlgebrasWithBasis would be a
good idea... I've now followed your example instead, and it all seems to
wo
Hi Christian,
On Fri, May 20, 2011 at 10:10:37AM +0200, Christian Nassau wrote:
> I would like to create a new category that's derived from
> AlgebrasWithBasis, but I get an infinite recursion when I ask for the
> CartesianProducts:
>
> Here's a simple example:
>
>class MyAlgebrasWit
I would like to create a new category that's derived from
AlgebrasWithBasis, but I get an infinite recursion when I ask for the
CartesianProducts:
Here's a simple example:
class MyAlgebrasWithBasis(AlgebrasWithBasis):
def __init__(self,R):
AlgebrasWithBasis.__init__(self,R)
Now