GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
1/**************************************************************************** 2** 3*A runtime.h ANUPQ source Eamonn O'Brien 4** 5*Y Copyright 1995-2001, Lehrstuhl D fuer Mathematik, RWTH Aachen, Germany 6*Y Copyright 1995-2001, School of Mathematical Sciences, ANU, Australia 7** 8*/ 9 10#if defined (RUN_TIME) 11 12/* largest number of defining generators = 2^GSC1 - 1 */ 13unsigned long GSC1 = 9; 14unsigned long MAXGENS = 511; 15 16/* largest number of pc generators = 2^GSC2 - 1 */ 17unsigned long GSC2 = 16; 18unsigned long MAXPC = 65535; 19 20/* largest class */ 21unsigned long MAXCLASS = 63; 22 23#endif 24 25 26