source: git/kernel/stairc.h @ 1f637e

spielwiese
Last change on this file since 1f637e was 1f637e, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: replaced pVariables by currRing->N... ADD: added 'void rChangeCurrRing(ring r);' to polys/polys.h CHG: started changing gr_kstd2.cc and syz*.cc
  • 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/* $Id$ */
7/*
8* ABSTRACT
9*/
10
11#include <kernel/structs.h>
12
13void scComputeHC(ideal s,ideal Q, int  k,poly &hEdge, ring tailRing = currRing);
14#if 0 // - alternative implementation for tests
15void scComputeHCw(ideal s,ideal Q, int  k,poly &hEdge, ring tailRing = currRing);
16#endif
17
18intvec * scIndIntvec(ideal S, ideal Q=NULL);
19
20// lists scIndIndset(ideal S, BOOLEAN all, ideal Q=NULL); // TODO: move to Singular/
21
22int scDimInt(ideal  s,ideal Q=NULL);
23int scMultInt(ideal  s,ideal Q=NULL);
24int scMult0Int(ideal  s,ideal Q=NULL);
25void scPrintDegree(int co, int mu);
26void scDegree(ideal  s,intvec *modulweight,ideal Q=NULL);
27
28ideal scKBase(int deg, ideal  s, ideal Q=NULL, intvec * mv=NULL);
29
30intvec * hHstdSeries(ideal S, intvec *modulweight, intvec *wdegree,
31                     ideal Q=NULL, ring tailRing = currRing);
32intvec * hFirstSeries(ideal S, intvec *modulweight, ideal Q=NULL, intvec *wdegree=NULL, ring tailRing = currRing);
33intvec * hSecondSeries(intvec *hseries1);
34
35void hLookSeries(ideal S, intvec *modulweight, ideal Q=NULL);
36
37#endif
38
39
Note: See TracBrowser for help on using the repository browser.