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 _SYMM_H_
7
#define _SYMM_H_
8
9
#ifndef _CARAT_TYPEDEF_H_
10
#include"typedef.h"
11
#endif
12
13
#ifdef __STDC__
14
/*-------------------------------------------------------------*\
15
| FILE: dsylv.c
16
\*-------------------------------------------------------------*/
17
extern matrix_TYP *dsylv(matrix_TYP *M);
18
extern int definite_test(matrix_TYP *M);
19
20
/*-------------------------------------------------------------*\
21
| FILE: rest_short.c
22
\*-------------------------------------------------------------*/
23
extern matrix_TYP *rest_short(matrix_TYP *mat, int *restvec, int rkgv,
24
int zaehler, int nenner, int find_opt, int count_opt, int *anz);
25
26
/*-------------------------------------------------------------*\
27
| FILE: short.c
28
\*-------------------------------------------------------------*/
29
extern matrix_TYP *short_vectors(matrix_TYP *mat, int length,
30
int lengthmin, int find_opt, int count_opt, int *anz);
31
32
/*-------------------------------------------------------------*\
33
| FILE: shortest.c
34
\*-------------------------------------------------------------*/
35
extern matrix_TYP *shortest(matrix_TYP *mat, int *min_norm);
36
37
#else
38
/*-------------------------------------------------------------*\
39
| FILE: dsylv.c
40
\*-------------------------------------------------------------*/
41
extern matrix_TYP *dsylv();
42
extern int definite_test();
43
44
/*-------------------------------------------------------------*\
45
| FILE: rest_short.c
46
\*-------------------------------------------------------------*/
47
extern matrix_TYP *rest_short();
48
49
/*-------------------------------------------------------------*\
50
| FILE: short.c
51
\*-------------------------------------------------------------*/
52
extern matrix_TYP *short_vectors();
53
54
/*-------------------------------------------------------------*\
55
| FILE: shortest.c
56
\*-------------------------------------------------------------*/
57
extern matrix_TYP *shortest();
58
59
#endif
60
#endif
61
62
#ifdef __cplusplus
63
}
64
#endif
65
66
67