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

563580 views
1
#ifdef __cplusplus
2
extern "C" {
3
#endif
4
5
6
#ifndef _HYPERBOLIC_H_
7
#define _HYPERBOLIC_H_
8
9
#ifndef _CARAT_TYPEDEF_H_
10
#include"typedef.h"
11
#endif
12
13
#ifdef __STDC__
14
/*-------------------------------------------------------------*\
15
| FILE: hyp_isom.c
16
\*-------------------------------------------------------------*/
17
extern matrix_TYP *hyperbolic_isometry(matrix_TYP *x1, matrix_TYP *x2,
18
matrix_TYP *S);
19
20
/*-------------------------------------------------------------*\
21
| FILE: hyp_stabilizer.c
22
\*-------------------------------------------------------------*/
23
extern bravais_TYP *hyperbolic_stabilizer(matrix_TYP *x, matrix_TYP *S);
24
#else
25
/*-------------------------------------------------------------*\
26
| FILE: hyp_isom.c
27
\*-------------------------------------------------------------*/
28
extern matrix_TYP *hyperbolic_isometry();
29
30
/*-------------------------------------------------------------*\
31
| FILE: hyp_stabilizer.c
32
\*-------------------------------------------------------------*/
33
extern bravais_TYP *hyperbolic_stabilizer();
34
35
#endif
36
#endif
37
38
39
#ifdef __cplusplus
40
}
41
#endif
42
43
44