Synopsis:
HH C -- produces the direct sum of the homology modules of the chain complex C as a graded module.
See also:
Code:
-- ../../../Macaulay2/m2/chaincomplexes.m2:457-462 homology(Nothing,ChainComplex) := homology(ChainComplex) := GradedModule => opts -> (C) -> ( H := new GradedModule; H.ring = ring C; complete C; scan(spots C, i -> H#i = homology(i,C)); H)