![[next]](next.gif)
![[previous]](previous.gif)
![[up]](up.gif)
![[top]](top.gif)
C**D -- the tensor product of a chain complex with a graded module.
The result is a chain complex.
Synopsis of use:
Code:
-- ../m2/chaincomplexes.m2:739-746
ChainComplex ** GradedModule := ChainComplex => (C,D) -> (
P := youngest(C,D);
key := (C,D,symbol **);
if P#?key then P#key
else C**D = (
C ** chainComplex D
)
)
![[next]](next.gif)
![[previous]](previous.gif)
![[up]](up.gif)
![[top]](top.gif)