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
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 */
13
unsigned long GSC1 = 9;
14
unsigned long MAXGENS = 511;
15
16
/* largest number of pc generators = 2^GSC2 - 1 */
17
unsigned long GSC2 = 16;
18
unsigned long MAXPC = 65535;
19
20
/* largest class */
21
unsigned long MAXCLASS = 63;
22
23
#endif
24
25
26