GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
/****************************************************************************1**2*A constants.h ANUPQ source Eamonn O'Brien3**4*Y Copyright 1995-2001, Lehrstuhl D fuer Mathematik, RWTH Aachen, Germany5*Y Copyright 1995-2001, School of Mathematical Sciences, ANU, Australia6**7*/89/* constants used in p-quotient program */1011#ifndef ANUPQ_CONSTANTS_H12#define ANUPQ_CONSTANTS_H1314#define PQSPACE 10000000 /* space allocated for computation in array y */15#define MAXWORD 10000 /* maximum length of word */1617#define STACK_SIZE 50000 /* dimension of collection stack */18#define DEFAULT_CLASS 10 /* default class bound for computation */19#define LINK_SOLUBLE_FLAG -1 /* flag in GAP output file indicating20soluble stabiliser */21#define ALL 999 /* step size flag to indicate that all22descendants should be constructed */2324#define PQ 1 /* two algorithms */25#define PGA 22627#define MIN_PRINT 0 /* print flags */28#define DEFAULT_PRINT 129#define INTERMEDIATE_PRINT 230#define MAX_PRINT 33132#define MAX_STANDARD_PRINT 2 /* print flags for standard presentation */33#define DEFAULT_STANDARD_PRINT 134#define MIN_STANDARD_PRINT 03536#define BASIC 1 /* input formats for presentation and words */37#define PRETTY 238#define FILE_INPUT 33940#define SUCCESS 0 /* successful computation */41#define FAILURE 1 /* computation failed -- lack of resources*/42#define CPU_TIME_LIMIT 1 /* exit when time limit exceeded */43#define INPUT_ERROR 2 /* input or command line options are wrong */4445#endif464748