GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
################################################################################ ## ## 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);