source: git/kernel/shiftgb.h @ d0f98e

spielwiese
Last change on this file since d0f98e was ad1c3b, checked in by Viktor Levandovskyy <levandov@…>, 16 years ago
*levandov: shift GB nonhomog case git-svn-id: file:///usr/local/Singular/svn/trunk@10616 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • 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/* $Id: shiftgb.h,v 1.4 2008-03-13 19:25:49 levandov Exp $ */
7/*
8* ABSTRACT: kernel: utils for kStd
9*/
10
11#include "structs.h"
12#include "gring.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);
39
40int itoInsert(poly p, int uptodeg, int lV, const ring r);
41
42#endif
Note: See TracBrowser for help on using the repository browser.