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

563520 views
1
#ifndef _ZZ_H
2
#define _ZZ_H
3
4
#include <stdlib.h> /* for atoi */
5
#include "typedef.h"
6
#include "tools.h"
7
#include "matrix.h"
8
#include "getput.h"
9
#include "datei.h"
10
11
#undef ZZ_PRIVATE
12
13
#ifdef __STDC__
14
#include "../functions/ZZ/ZZ_P.h"
15
16
17
18
19
20
extern bravais_TYP **q2z(bravais_TYP *G,
21
int *number,
22
int ADFLAG,
23
QtoZ_TYP *INZ,
24
int quiet);
25
26
extern void free_QtoZ(QtoZ_TYP *inz,
27
int flag);
28
29
extern void *ZZ(bravais_TYP * group,
30
matrix_TYP * gram,
31
int *divisors,
32
QtoZ_TYP *inzidenz,
33
char *options,
34
FILE* outputfile,
35
int super_nr,
36
int konst_flag);
37
38
extern bravais_TYP **get_groups(bravais_TYP **ADGROUPS,
39
int ad_no,
40
int *number);
41
42
43
#else
44
extern ZZ_data_t ZZ ();
45
46
extern bravais_TYP **q2z();
47
48
extern bravais_TYP **get_groups();
49
50
extern void free_QtoZ();
51
52
#endif
53
54
extern int NUMBER; /* Abbruch nach NUMBER Zentrierungen */
55
extern int LEVEL; /* Abbruch nach Iterationszahl LEVEL */
56
57
#endif /* _ZZ_H */
58
59