Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

563662 views
DeclareOperation("TensorWithGModule",[IsHapResolution,IsInt,IsGOuterGroup,IsGOuterGroup,IsGOuterGroup]);

DeclareOperation("HomologyModule",[IsHapGComplex,IsInt]);

#####################################################################
#####################################################################
##
InstallMethod( ViewObj,
"for HapGComplex",
[IsHapGComplex],
 function(R)
Print("G-complex of length ",
EvaluateProperty(R,"length"), " . \n");
 end);

InstallMethod( PrintObj,
"for HapGComplex",
[IsHapGComplex],
function(R)
Print("G-complex of length ",
EvaluateProperty(R,"length"), " . \n");
end);
#######################################################################
#######################################################################