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

563675 views
#(C) Graham Ellis 2005-2006

#####################################################################
InstallGlobalFunction(ResolutionNilpotentGroup,
function(arg)
local  
	EE,K,Test,
	N,E,G, 
	EEhomGG,
	EhomG,
	GmapE,
	RN,
	RG,
	RE,
	T;

SetInfoLevel(InfoWarning,0);
HAPconstant:=50;
EE:=arg[1];
K:=arg[2];
if Length(arg)>2 then Test:=arg[3]; else Test:="NoTest"; fi;
if IsAbelian(EE) then 
	if IsPcpGroup(EE) then 
		#if IsFinite(EE) then
		#return ResolutionFiniteGroup(EE,K);
		#else
		return ResolutionAbelianPcpGroup(EE,K);
		#fi;
	else
		return ResolutionAbelianGroup(EE,K);
	fi;
fi;

N:=Center(EE);

if IsPcpGroup(EE) then
	EEhomGG:=NaturalHomomorphism(EE,N);
else
	EEhomGG:=NaturalHomomorphismByNormalSubgroupNC(EE,N); 
fi;

E:=Source(EEhomGG);
G:=Range(EEhomGG);			#####here
if Test="TestFiniteness" then
RN:=ResolutionFiniteGroup(N,K);
else
RN:=ResolutionNilpotentGroup(N,K);;
fi;
RG:=ResolutionNilpotentGroup(G,K);;


T:= ResolutionExtension(EEhomGG,RN,RG,Test);
HAPconstant:=2;
SetInfoLevel(InfoWarning,1);
return T;
end);
#####################################################################