source: git/kernel/combinatorics/hilb.h @ a4771e1

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
10struct spolyrec  ; typedef struct spolyrec polyrec; typedef polyrec * poly;
11struct ip_sring  ; typedef struct ip_sring                          * ring;
12struct sip_sideal; typedef struct sip_sideal                        * ideal;
13
14class intvec; 
15
16extern ring currRing;
17
18intvec * hHstdSeries(ideal S, intvec *modulweight, intvec *wdegree,
19                     ideal Q=NULL, ring tailRing = currRing);
20intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
21intvec * hSecondSeries(intvec *hseries1);
22
23void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL);
24
25#endif
26
27
Note: See TracBrowser for help on using the repository browser.