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: 415066
1
/****************************************************************************
2
**
3
*W cyclotom.h GAP source Martin Schönert
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 implements the arithmetic for elements from cyclotomic fields
11
** $Q(e^{{2 \pi i}/n}) = Q(e_n)$, which we call cyclotomics for short.
12
*/
13
14
#ifndef GAP_CYCLOTOM_H
15
#define GAP_CYCLOTOM_H
16
17
18
/****************************************************************************
19
**
20
21
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
22
*/
23
24
25
/****************************************************************************
26
**
27
28
*F InitInfoCyc() . . . . . . . . . . . . . . . . . . table of init functions
29
*/
30
StructInitInfo * InitInfoCyc ( void );
31
32
33
#endif // GAP_CYCLOTOM_H
34
35
/****************************************************************************
36
**
37
38
*E cyclotom.h . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
39
*/
40
41
42
43
44