source: git/kernel/shiftgb.h @ 037df4

spielwiese
Last change on this file since 037df4 was 037df4, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: HAVE_SHIFTBBA git-svn-id: file:///usr/local/Singular/svn/trunk@10850 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.5 2008-07-08 13:02:21 Singular Exp $ */
7/*
8* ABSTRACT: kernel: utils for kStd
9*/
10
11#include "structs.h"
12#ifdef HAVE_SHIFTBBA
13#include "gring.h"
14
15poly p_LPshiftT(poly p, int sh, int uptodeg, int lV, kStrategy strat, const ring r);
16int p_LastVblockT(poly p, int lV, kStrategy strat, const ring r);
17
18poly p_ShrinkT(poly p, int lV, kStrategy strat, const ring r);
19poly p_Shrink(poly p, int lV, const ring r);
20poly p_mShrink(poly p, int lV, const ring r);
21//poly p_Shrink(poly p, int uptodeg, int lV, kStrategy strat, const ring r);
22//poly p_mShrink(poly p, int uptodeg, int lV, const ring r);
23
24poly p_LPshift(poly p, int sh, int uptodeg, int lV,const ring r);
25poly p_mLPshift(poly p, int sh, int uptodeg, int lV,const ring r);
26
27int p_mLastVblock(poly p, int lV,const ring r);
28int p_LastVblock(poly p, int lV, const ring r);
29
30poly pLPshift(poly p, int sh, int uptodeg, int lV);
31poly pmLPshift(poly p, int sh, int uptodeg, int lV);
32
33int pLastVblock(poly p, int lV);
34int pmLastVblock(poly p, int lV);
35
36int pFirstVblock(poly p, int lV);
37int pmFirstVblock(poly p, int lV);
38
39int isInV(poly p, int lV);
40
41int itoInsert(poly p, int uptodeg, int lV, const ring r);
42
43#endif
44#endif
Note: See TracBrowser for help on using the repository browser.