source: git/kernel/combinatorics/stairc.h @ 276224e

fieker-DuValspielwiese
Last change on this file since 276224e was fea494, checked in by Hans Schoenemann <hannes@…>, 10 years ago
format
  • Property mode set to 100644
File size: 1.1 KB
Line 
1#ifndef STAIRC_H
2#define STAIRC_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
18void scComputeHC(ideal s,ideal Q, int  k,poly &hEdge, ring tailRing = currRing);
19#if 0 // - alternative implementation for tests
20void scComputeHCw(ideal s,ideal Q, int  k,poly &hEdge, ring tailRing = currRing);
21#endif
22
23intvec * scIndIntvec(ideal S, ideal Q=NULL);
24
25// lists scIndIndset(ideal S, BOOLEAN all, ideal Q=NULL); // TODO: move to Singular/
26
27int scDimInt(ideal  s,ideal Q=NULL);
28int scMultInt(ideal  s,ideal Q=NULL);
29int scMult0Int(ideal  s,ideal Q=NULL, const ring tailRing = currRing);
30void scPrintDegree(int co, int mu);
31void scDegree(ideal  s,intvec *modulweight,ideal Q=NULL);
32
33ideal scKBase(int deg, ideal  s, ideal Q=NULL, intvec * mv=NULL);
34
35#endif
36
37
Note: See TracBrowser for help on using the repository browser.