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
7
#ifndef _CONTRIB_H_
8
#define _CONTRIB_H_
9
10
#ifndef _CARAT_TYPEDEF_H_
11
#include"typedef.h"
12
#endif
13
14
#ifdef __STDC__
15
16
/*-------------------------------------------------------------*\
17
| FILE: torsionfree.c
18
\*-------------------------------------------------------------*/
19
20
int *torsionfree(bravais_TYP *R,
21
int *order_out,
22
int *number_of_conjugacy_classes);
23
24
/***************************************************************
25
| FILE: suche_kand.c
26
****************************************************************/
27
28
matrix_TYP *suche_kand (bravais_TYP *Gen_A, bravais_TYP *Gen_B);
29
30
#else
31
32
/*-------------------------------------------------------------*\
33
| FILE: torsionfree.c
34
\*-------------------------------------------------------------*/
35
36
int *torsionfree();
37
38
/***************************************************************
39
| FILE: suche_kand.c
40
****************************************************************/
41
42
matrix_TYP *suche_kand ();
43
44
#endif
45
#endif
46
47
48
#ifdef __cplusplus
49
}
50
#endif
51
52
53