CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

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

Views: 418346
#############################################################################
####
##
#W  doL33.g             ACE Research Example                      Greg Gamble
##
##  Provides some easy applications of the pgrelfind.g functions,  using  the
##  perfect simple group L_3(3).
##
#Y  Copyright (C) 2001  Centre for Discrete Mathematics and Computing
#Y                      Department of Computer Science & Electrical Eng.
#Y                      University of Queensland, Australia.
##

ACEResExample := rec(filename := "doL33.g", print := false);
if IsBound(IsACEResExampleOK) and IsACEResExampleOK() then
  Print("gap> Print(\"L3_3s[1]:\\n\", L3_3s[1], \"\\n\");\n");
  Print("L3_3s[1]:\n", L3_3s[1], "\n");
  L33 := ACE_PRINT_AND_EVAL(
             "L33", "PGRelFind([a, b], L3_3s[1].rels, L3_3s[1].sgens)");
elif ACEResExample.print then
## Begin
Print("L3_3s[1]:\n", L3_3s[1], "\n");
L33 := PGRelFind([a, b], L3_3s[1].rels, L3_3s[1].sgens); 
## End
elif not IsBound(IsACEResExampleOK) then
  Print("Error, ACEReadResearchExample: functions and variables undefined.\n",
        "Please type: 'ACEReadResearchExample();'\n",
        "and try again.\n");
fi;

#E  doL33.g . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here