source: git/Singular/hutil.h @ 82716e

spielwiese
Last change on this file since 82716e was e78cce, checked in by Olaf Bachmann <obachman@…>, 26 years ago
Mon Dec 15 23:31:56 1997 Olaf Bachmann <obachman@mathematik.uni-kl.de> * polys-impl.h: Various small bug - fixes and changes in preparation of COMP_FAST merge: hilbert series, maps are ok; sres and syz are still buggy; small things still need to be checked; git-svn-id: file:///usr/local/Singular/svn/trunk@978 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.8 KB
Line 
1#ifndef HUTIL_H
2#define HUTIL_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT
8*/
9typedef Exponent_t * scmon;
10typedef scmon * scfmon;
11typedef int * varset;
12struct monrec;
13typedef struct monrec monh;
14typedef monh * monp;
15typedef monp * monf;
16struct monrec{  scfmon mo;
17  int a;
18};
19
20#define LEN_MON (sizeof(scfmon) + sizeof(int))
21
22extern scfmon hexist, hstc, hrad, hwork;
23extern scmon hpure, hpur0;
24extern varset hvar, hsel;
25extern int hNexist, hNstc, hNrad, hNvar, hNpure;
26extern Exponent_t hisModule;
27extern monf stcmem, radmem;
28
29scfmon hInit(ideal S, ideal Q, int * Nexist);
30void hDelete(scfmon ev, int ev_length);
31void hComp(scfmon exist, int Nexist, Exponent_t ak, scfmon stc, int * Nstc);
32void hSupp(scfmon stc, int Nstc, varset var, int * Nvar);
33void hOrdSupp(scfmon stc, int Nstc, varset var, int Nvar);
34void hStaircase(scfmon stc, int * Nstc, varset var, int Nvar);
35void hRadical(scfmon rad, int * Nrad, int Nvar);
36void hLexS(scfmon stc, int Nstc, varset var, int Nvar);
37void hLexR(scfmon rad, int Nrad, varset var, int Nvar);
38void hPure(scfmon stc, int a, int *Nstc, varset var, int Nvar,
39 scmon pure, int *Npure);
40void hElimS(scfmon stc, int * e1, int a2, int e2,varset var, int Nvar);
41void hElimR(scfmon rad, int * e1, int a2, int e2,varset var, int Nvar);
42void hLex2S(scfmon stc, int e1, int a2, int e2,varset var,
43 int Nvar, scfmon w);
44void hLex2R(scfmon rad, int e1, int a2, int e2,varset var,
45 int Nvar, scfmon w);
46void hStepS(scfmon stc, int Nstc, varset var, int Nvar,int *a, Exponent_t *x);
47void hStepR(scfmon rad, int Nrad, varset var, int Nvar,int *a);
48monf hCreate(int Nvar);
49void hKill(monf xmem, int Nvar);
50scfmon hGetmem(int lm, scfmon old, monp monmem);
51scmon hGetpure(scmon p);
52
53#endif
Note: See TracBrowser for help on using the repository browser.