Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

563938 views
1
#ifndef BISON_CALC_H
2
# define BISON_CALC_H
3
4
#ifndef YYSTYPE
5
typedef union {
6
char *str;
7
int var;
8
} yystype;
9
# define YYSTYPE yystype
10
#endif
11
# define EOS 257
12
# define BAD 258
13
# define HELP 259
14
# define HEX 260
15
# define DECIMAL 261
16
# define QUIT 262
17
# define ABS 263
18
# define BIN 264
19
# define FIB 265
20
# define GCD 266
21
# define KRON 267
22
# define LCM 268
23
# define LUCNUM 269
24
# define NEXTPRIME 270
25
# define POWM 271
26
# define ROOT 272
27
# define SQRT 273
28
# define NUMBER 274
29
# define VARIABLE 275
30
# define LOR 276
31
# define LAND 277
32
# define EQ 278
33
# define NE 279
34
# define LE 280
35
# define GE 281
36
# define LSHIFT 282
37
# define RSHIFT 283
38
# define UMINUS 284
39
40
41
extern YYSTYPE yylval;
42
43
#endif /* not BISON_CALC_H */
44
45