spielwiese
Last change
on this file since 15bd1fc was
15bd1fc,
checked in by Max Horn <max@…>, 10 years ago
|
Fix to allow external code to use libsingular
Without this change, it is impossible to link a 3rd party tools (such as the libsing GAP package) against a version of libsingular installed via "make install", as no "libpolys" directory is installed.
|
-
Property mode set to
100644
|
File size:
837 bytes
|
Line | |
---|
1 | #ifndef LIBSINGULAR__H |
---|
2 | #define LIBSINGULAR__H |
---|
3 | |
---|
4 | #include <math.h> // Why this? |
---|
5 | |
---|
6 | #include <misc/auxiliary.h> |
---|
7 | #include <kernel/structs.h> |
---|
8 | #include <kernel/polys.h> |
---|
9 | #include <coeffs/numbers.h> |
---|
10 | #include <coeffs/longrat.h> |
---|
11 | #include <kernel/febase.h> |
---|
12 | #include <polys/monomials/ring.h> |
---|
13 | #include <omalloc/omalloc.h> |
---|
14 | #include <polys/clapsing.h> |
---|
15 | #include <polys/monomials/maps.h> |
---|
16 | #include <kernel/kutil.h> |
---|
17 | #include <kernel/kstd1.h> |
---|
18 | #include <kernel/tgb.h> |
---|
19 | #include <polys/sparsmat.h> |
---|
20 | |
---|
21 | #include <Singular/subexpr.h> |
---|
22 | #include <Singular/tok.h> |
---|
23 | #include <Singular/grammar.h> |
---|
24 | #include <Singular/ipid.h> |
---|
25 | #include <Singular/ipshell.h> |
---|
26 | #include <Singular/attrib.h> |
---|
27 | #include <misc/options.h> |
---|
28 | |
---|
29 | void siInit(char *); |
---|
30 | |
---|
31 | /* we need this function in Sage*/ |
---|
32 | number nr2mMapZp(number from); // TODO: replace with something else... |
---|
33 | |
---|
34 | |
---|
35 | #endif // #ifndef LIBSINGULAR__H |
---|
36 | |
---|
Note: See
TracBrowser
for help on using the repository browser.