source: git/kernel/GBEngine/stairc.h @ 2d3b010

spielwiese
Last change on this file since 2d3b010 was 2d3b010, checked in by Hans Schoenemann <hannes@…>, 10 years ago
fix: wrong ring used internally: add ring to scMult0Int
  • Property mode set to 100644
File size: 1.2 KB
Line 
1#ifndef STAIRC_H
2#define STAIRC_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT
8*/
9
10#include <kernel/structs.h>
11
12void scComputeHC(ideal s,ideal Q, int  k,poly &hEdge, ring tailRing = currRing);
13#if 0 // - alternative implementation for tests
14void scComputeHCw(ideal s,ideal Q, int  k,poly &hEdge, ring tailRing = currRing);
15#endif
16
17intvec * scIndIntvec(ideal S, ideal Q=NULL);
18
19// lists scIndIndset(ideal S, BOOLEAN all, ideal Q=NULL); // TODO: move to Singular/
20
21int scDimInt(ideal  s,ideal Q=NULL);
22int scMultInt(ideal  s,ideal Q=NULL);
23int scMult0Int(ideal  s,ideal Q=NULL, const ring r=currRing);
24void scPrintDegree(int co, int mu);
25void scDegree(ideal  s,intvec *modulweight,ideal Q=NULL);
26
27ideal scKBase(int deg, ideal  s, ideal Q=NULL, intvec * mv=NULL);
28
29intvec * hHstdSeries(ideal S, intvec *modulweight, intvec *wdegree,
30                     ideal Q=NULL, ring tailRing = currRing);
31intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
32intvec * hSecondSeries(intvec *hseries1);
33
34void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL);
35
36#endif
37
38
Note: See TracBrowser for help on using the repository browser.