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 global.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
/* global variables used in main and setup_reps */
11
12
#ifndef ANUPQ_GLOBAL_H
13
#define ANUPQ_GLOBAL_H
14
15
#define GAP_LIBRARY 2
16
17
int Group_library;
18
int Compact_Description;
19
int Compact_Order;
20
char *Group_library_file;
21
22
extern Logical GAP4iostream;
23
24
#endif
25
26