spielwiese
Release-4-3-2p1
Last change
on this file was
0d9242,
checked in by Hans Schoenemann <hannes@…>, 16 months ago
|
fix: no -std=c++11 for C files (from NTL_CPPFLAGS), weigth0.cc stuff
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | #ifndef STRUCTS_H |
---|
2 | #define STRUCTS_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* |
---|
7 | * ABSTRACT |
---|
8 | */ |
---|
9 | |
---|
10 | #include "kernel/mod2.h" |
---|
11 | |
---|
12 | /* for omBin */ |
---|
13 | #include "omalloc/omalloc.h" |
---|
14 | |
---|
15 | /* standard types */ |
---|
16 | #define BITSET unsigned int |
---|
17 | |
---|
18 | |
---|
19 | /* C++-part */ |
---|
20 | #ifdef __cplusplus |
---|
21 | #include "kernel/polys.h" |
---|
22 | |
---|
23 | class Voice; |
---|
24 | class sleftv; |
---|
25 | class procinfo; |
---|
26 | class skStrategy; |
---|
27 | class ssyStrategy; |
---|
28 | class CPolynomialSummator; |
---|
29 | class CGlobalMultiplier; |
---|
30 | class CFormulaPowerMultiplier; |
---|
31 | #endif |
---|
32 | |
---|
33 | |
---|
34 | enum tHomog |
---|
35 | { |
---|
36 | isNotHomog = FALSE, |
---|
37 | isHomog = TRUE, |
---|
38 | testHomog |
---|
39 | }; |
---|
40 | |
---|
41 | struct sip_package; |
---|
42 | typedef struct sip_package ip_package; |
---|
43 | typedef ip_package * package; |
---|
44 | |
---|
45 | typedef struct n_Procs_s n_Procs_s; |
---|
46 | |
---|
47 | struct nc_struct; |
---|
48 | typedef struct nc_struct nc_struct; |
---|
49 | |
---|
50 | typedef struct sip_link ip_link; |
---|
51 | |
---|
52 | /* the pointer types */ |
---|
53 | typedef char * char_ptr; |
---|
54 | typedef int * int_ptr; |
---|
55 | |
---|
56 | #ifdef __cplusplus |
---|
57 | typedef sleftv * leftv; |
---|
58 | typedef skStrategy * kStrategy; |
---|
59 | typedef ssyStrategy * syStrategy; |
---|
60 | typedef procinfo * procinfov; |
---|
61 | |
---|
62 | /* the function pointer types */ |
---|
63 | |
---|
64 | #endif /* __cplusplus */ |
---|
65 | |
---|
66 | |
---|
67 | |
---|
68 | /* |
---|
69 | ** 7. runtime procedures/global data |
---|
70 | */ |
---|
71 | |
---|
72 | /* 7.1 C-routines : */ |
---|
73 | |
---|
74 | |
---|
75 | #define loop for(;;) |
---|
76 | |
---|
77 | EXTERN_VAR omBin char_ptr_bin; |
---|
78 | |
---|
79 | #endif |
---|
80 | |
---|
Note: See
TracBrowser
for help on using the repository browser.