spielwiese
Last change
on this file since a4771e1 was
a4771e1,
checked in by Oleksandr Motsak <motsak@…>, 9 years ago
|
Separation of hilbert function into kernel/combinatorics/hilb.h + include cleanup
|
-
Property mode set to
100644
|
File size:
803 bytes
|
Line | |
---|
1 | #ifndef HILB_H |
---|
2 | #define HILB_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* |
---|
7 | * ABSTRACT |
---|
8 | */ |
---|
9 | |
---|
10 | struct spolyrec ; typedef struct spolyrec polyrec; typedef polyrec * poly; |
---|
11 | struct ip_sring ; typedef struct ip_sring * ring; |
---|
12 | struct sip_sideal; typedef struct sip_sideal * ideal; |
---|
13 | |
---|
14 | class intvec; |
---|
15 | |
---|
16 | extern ring currRing; |
---|
17 | |
---|
18 | intvec * hHstdSeries(ideal S, intvec *modulweight, intvec *wdegree, |
---|
19 | ideal Q=NULL, ring tailRing = currRing); |
---|
20 | intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing); |
---|
21 | intvec * hSecondSeries(intvec *hseries1); |
---|
22 | |
---|
23 | void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL); |
---|
24 | |
---|
25 | #endif |
---|
26 | |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.