Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

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

Views: 415069
1
/****************************************************************************
2
**
3
*W compstat.c GAP source Frank Celler
4
**
5
**
6
*Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
7
*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
8
*Y Copyright (C) 2002 The GAP Group
9
*/
10
#include "system.h"
11
#include "compstat.h" /* statically linked modules */
12
13
// #define AVOID_PRECOMPILED
14
15
16
/****************************************************************************
17
**
18
19
*V CompInitFuncs . . . . . . . . . . list of compiled module init functions
20
**
21
** This a dummy list in case no module is statically linked.
22
*/
23
#ifndef AVOID_PRECOMPILED
24
extern StructInitInfo * Init__methsel1 ( void );
25
extern StructInitInfo * Init__type1 ( void );
26
extern StructInitInfo * Init__filter1 ( void );
27
extern StructInitInfo * Init__oper1( void );
28
extern StructInitInfo * Init__random( void );
29
#endif
30
31
InitInfoFunc CompInitFuncs [] = {
32
#ifndef AVOID_PRECOMPILED
33
Init__methsel1,
34
Init__type1,
35
Init__oper1,
36
Init__filter1,
37
Init__random,
38
#endif
39
0
40
};
41
42
43
/****************************************************************************
44
**
45
46
*E compstat.c . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
47
*/
48
49