1 | #ifndef STAIRC_H |
---|
2 | #define STAIRC_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* |
---|
7 | * ABSTRACT |
---|
8 | */ |
---|
9 | |
---|
10 | struct spolyrec ; typedef struct spolyrec polyrec; typedef polyrec * poly; |
---|
11 | struct ip_sring ; typedef struct ip_sring * ring; |
---|
12 | struct sip_sideal; typedef struct sip_sideal * ideal; |
---|
13 | |
---|
14 | class intvec; |
---|
15 | |
---|
16 | extern ring currRing; |
---|
17 | |
---|
18 | void scComputeHC(ideal s,ideal Q, int k,poly &hEdge, ring tailRing = currRing); |
---|
19 | #if 0 // - alternative implementation for tests |
---|
20 | void scComputeHCw(ideal s,ideal Q, int k,poly &hEdge, ring tailRing = currRing); |
---|
21 | #endif |
---|
22 | |
---|
23 | intvec * scIndIntvec(ideal S, ideal Q=NULL); |
---|
24 | |
---|
25 | // lists scIndIndset(ideal S, BOOLEAN all, ideal Q=NULL); // TODO: move to Singular/ |
---|
26 | |
---|
27 | int scDimInt(ideal s,ideal Q=NULL); |
---|
28 | int scMultInt(ideal s,ideal Q=NULL); |
---|
29 | int scMult0Int(ideal s,ideal Q=NULL, const ring r=currRing); |
---|
30 | void scPrintDegree(int co, int mu); |
---|
31 | void scDegree(ideal s,intvec *modulweight,ideal Q=NULL); |
---|
32 | |
---|
33 | ideal scKBase(int deg, ideal s, ideal Q=NULL, intvec * mv=NULL); |
---|
34 | |
---|
35 | #endif |
---|
36 | |
---|
37 | |
---|