source: git/kernel/combinatorics/hilb.h @ 3c78f6

fieker-DuValspielwiese
Last change on this file since 3c78f6 was 266ae3, checked in by Hans Schoenemann <hannes@…>, 6 years ago
chg: only one definition for poly/ideal/map/matrix
  • Property mode set to 100644
File size: 686 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 * hHstdSeries(ideal S, intvec *modulweight, intvec *wdegree, ideal Q=NULL, ring tailRing = currRing);
15intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
16
17intvec * hSecondSeries(intvec *hseries1);
18
19void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
20
21void sortMonoIdeal_pCompare(ideal I);
22#endif
23
24
Note: See TracBrowser for help on using the repository browser.