source: git/kernel/shiftgb.h @ 08a955

spielwiese
Last change on this file since 08a955 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 1.3 KB
Line 
1#ifndef SHIFTGB_H
2#define SHIFTGB_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: kernel: utils for kStd
8*/
9
10#include <kernel/structs.h>
11#ifdef HAVE_SHIFTBBA
12#include <polys/nc/nc.h>
13
14poly p_LPshiftT(poly p, int sh, int uptodeg, int lV, kStrategy strat, const ring r);
15int p_LastVblockT(poly p, int lV, kStrategy strat, const ring r);
16
17poly p_ShrinkT(poly p, int lV, kStrategy strat, const ring r);
18poly p_Shrink(poly p, int lV, const ring r);
19poly p_mShrink(poly p, int lV, const ring r);
20//poly p_Shrink(poly p, int uptodeg, int lV, kStrategy strat, const ring r);
21//poly p_mShrink(poly p, int uptodeg, int lV, const ring r);
22
23poly p_LPshift(poly p, int sh, int uptodeg, int lV,const ring r);
24poly p_mLPshift(poly p, int sh, int uptodeg, int lV,const ring r);
25
26int p_mLastVblock(poly p, int lV,const ring r);
27int p_LastVblock(poly p, int lV, const ring r);
28
29poly pLPshift(poly p, int sh, int uptodeg, int lV);
30poly pmLPshift(poly p, int sh, int uptodeg, int lV);
31
32int pLastVblock(poly p, int lV);
33int pmLastVblock(poly p, int lV);
34
35int pFirstVblock(poly p, int lV);
36int pmFirstVblock(poly p, int lV);
37
38int isInV(poly p, int lV);
39int poly_isInV(poly p, int lV);
40int ideal_isInV(ideal I, int lV);
41
42int itoInsert(poly p, int uptodeg, int lV, const ring r);
43
44#endif
45#endif
Note: See TracBrowser for help on using the repository browser.