1 #ifndef HILB_H
2 #define HILB_H
3 /****************************************
4 *  Computer Algebra System SINGULAR     *
5 ****************************************/
6 /*
7 * ABSTRACT
8 */
9 
10 #include "polys/monomials/ring.h"
11 #include "kernel/polys.h"
12 #include "misc/intvec.h"
13 
14 intvec * hHstdSeries(ideal S, intvec *modulweight, intvec *wdegree, ideal Q=NULL, ring tailRing = currRing);
15 intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
16 
17 intvec * hSecondSeries(intvec *hseries1);
18 
19 void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
20 
21 void sortMonoIdeal_pCompare(ideal I);
22 #endif
23 
24 
25