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 constants.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
/* constants used in p-quotient program */
11
12
#ifndef ANUPQ_CONSTANTS_H
13
#define ANUPQ_CONSTANTS_H
14
15
#define PQSPACE 10000000 /* space allocated for computation in array y */
16
#define MAXWORD 10000 /* maximum length of word */
17
18
#define STACK_SIZE 50000 /* dimension of collection stack */
19
#define DEFAULT_CLASS 10 /* default class bound for computation */
20
#define LINK_SOLUBLE_FLAG -1 /* flag in GAP output file indicating
21
soluble stabiliser */
22
#define ALL 999 /* step size flag to indicate that all
23
descendants should be constructed */
24
25
#define PQ 1 /* two algorithms */
26
#define PGA 2
27
28
#define MIN_PRINT 0 /* print flags */
29
#define DEFAULT_PRINT 1
30
#define INTERMEDIATE_PRINT 2
31
#define MAX_PRINT 3
32
33
#define MAX_STANDARD_PRINT 2 /* print flags for standard presentation */
34
#define DEFAULT_STANDARD_PRINT 1
35
#define MIN_STANDARD_PRINT 0
36
37
#define BASIC 1 /* input formats for presentation and words */
38
#define PRETTY 2
39
#define FILE_INPUT 3
40
41
#define SUCCESS 0 /* successful computation */
42
#define FAILURE 1 /* computation failed -- lack of resources*/
43
#define CPU_TIME_LIMIT 1 /* exit when time limit exceeded */
44
#define INPUT_ERROR 2 /* input or command line options are wrong */
45
46
#endif
47
48