source: git/kernel/combinatorics/hilb.h @ 4ec0f0

spielwiese
Last change on this file since 4ec0f0 was 4ec0f0, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Instumentation with id_Test* for inputs + more general hLookSeries
  • Property mode set to 100644
File size: 832 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, ideal Q=NULL, ring tailRing = currRing);
19intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
20
21intvec * hSecondSeries(intvec *hseries1);
22
23void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing); 
24
25#endif
26
27
Note: See TracBrowser for help on using the repository browser.