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

1035654 views
################################################################################
##
##  simpcomp / pkggrape.gi
##
##  Loaded when `GRAPE' package is not available
##
##  $Id$
##
################################################################################
InstallMethod(SCAutomorphismGroup,
"for SCSimplicialComplex",
[SCIsSimplicialComplex],
	function(complex)

	local G;
	
	G:=SCAutomorphismGroupInternal(complex);
	if G = fail then
		return fail;
	else
			return G;
	fi;
end);