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 word_types.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
/* header file for call types to procedures to read words and for
11
symbols used in words */
12
13
#ifndef ANUPQ_WORD_TYPES_H
14
#define ANUPQ_WORD_TYPES_H
15
16
#define LHS 1
17
#define RHS 2
18
#define WORD 3
19
#define INVERSE_OF_WORD 3
20
#define VALUE_A 4
21
#define VALUE_B 5
22
#define FIRST_ENTRY 6
23
#define NEXT_ENTRY 7
24
#define ACTION 8
25
26
#define END_OF_WORD ';'
27
#define LHS_COMMUTATOR '['
28
#define RHS_COMMUTATOR ']'
29
30
#endif
31
32