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

563516 views
1
#ifdef __cplusplus
2
extern "C" {
3
#endif
4
5
6
#ifndef _PRESENTATION_h_
7
#define _PRESENTATION_h_
8
9
#ifdef __STDC__
10
11
/**********************************************************************
12
| FILE: presentation.c
13
***********************************************************************/
14
extern matrix_TYP *pres(bahn **s,
15
bravais_TYP *G,
16
int *OPT);
17
18
extern void normalize_word(int *w);
19
20
/**********************************************************************
21
| FILE: mapped_word.c
22
***********************************************************************/
23
matrix_TYP *mapped_word(int *w,
24
matrix_TYP **A,
25
matrix_TYP **AINV);
26
27
/**********************************************************************
28
| FILE: check_base.c
29
***********************************************************************/
30
void check_base(bahn **s,
31
bravais_TYP *G);
32
33
/**********************************************************************
34
| FILE: put_word.c
35
***********************************************************************/
36
void put_word(int *w,
37
char *O);
38
39
#else
40
41
/**********************************************************************
42
| FILE: presentation.c
43
***********************************************************************/
44
extern matrix_TYP *pres();
45
46
extern void normalize_word();
47
48
/**********************************************************************
49
| FILE: mapped_word.c
50
***********************************************************************/
51
matrix_TYP *mapped_word();
52
53
/**********************************************************************
54
| FILE: check_base.c
55
***********************************************************************/
56
void check_base();
57
58
/**********************************************************************
59
| FILE: put_word.c
60
***********************************************************************/
61
void put_word();
62
63
#endif
64
#endif
65
66
#ifdef __cplusplus
67
}
68
#endif
69
70
71