GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
/****************************************************************************1**2*A exp_vars.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/* definition file for structure to store exponent flag information */1011#ifndef ANUPQ_EXP_VARS_H12#define ANUPQ_EXP_VARS_H1314struct exp_vars {15int list; /* which list to generate? */16Logical complete; /* print list generated before filters applied */17int partitions; /* list weight partitions */18Logical process; /* power word and echelonise result */19int start_process; /* index of first word to power */20Logical filter; /* reason to filter word from list */21int report_unit; /* report after this many additional words collected */22int *queue; /* queue to store redundancies obtained from echelon */23int queue_length; /* number of redundancies obtained */24Logical word_list; /* save list of test words to file */25Logical check_exponent; /* check whether group has particular exponent */26Logical all_trivial; /* all test words are trivial */27};2829#define ALL_WORDS 130#define REDUCED_LIST 231#define INITIAL_SEGMENT 33233#endif343536