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

fieker-DuValspielwiese
Last change on this file since 4f8fd1d was 762afe1, checked in by Hans Schoenemann <hannes@…>, 2 years ago
remove tailRing from Hilbert Series stuff
  • Property mode set to 100644
File size: 659 bytes
Line 
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
14intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL);
15intvec * hFirstSeries0(ideal S, ideal Q, intvec *wdegree, const ring src, const ring Qt);
16poly hilbert_series(ideal A, const ring src,  const intvec *wdegree, const ring Qt);
17
18intvec * hSecondSeries(intvec *hseries1);
19
20void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL);
21#endif
Note: See TracBrowser for help on using the repository browser.