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

Path: gap4r8 / src / dteval.h
Views: 415065
1
/****************************************************************************
2
**
3
*W dteval.h GAP source Wolfgang Merkwitz
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
** This file contains the part of the deep thought package which uses the
11
** deep thought polynomials to multiply in nilpotent groups. See dteval.c
12
** for more information.
13
*/
14
15
#ifndef GAP_DTEVAL_H
16
#define GAP_DTEVAL_H
17
18
19
/****************************************************************************
20
**
21
22
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
23
*/
24
25
26
/****************************************************************************
27
**
28
29
*F InitInfoDTEvaluation() . . . . . . . . . . . . . table of init functions
30
*/
31
StructInitInfo * InitInfoDTEvaluation ( void );
32
33
34
#endif // GAP_DTEVAL_H
35
36
/****************************************************************************
37
**
38
39
*E dteval.h . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
40
**
41
*/
42
43