


![[top]](top.gif)
Synopsis:
chainComplex M -- convert a graded module to a chain complex by installing the zero map as differential.
See also:
Code:
-- ../../../Macaulay2/m2/chaincomplexes.m2:668-673
chainComplex GradedModule := ChainComplex => (M) -> (
C := new ChainComplex from M;
b := C.dd = new ChainComplexMap;
b.degree = -1;
b.source = b.target = C;
C)



![[top]](top.gif)