source: git/kernel/shiftgb.h @ 1c473f

spielwiese
Last change on this file since 1c473f was 4d2ab5c, checked in by Viktor Levandovskyy <levandov@…>, 16 years ago
*levandov: major update in freegb impl git-svn-id: file:///usr/local/Singular/svn/trunk@10602 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.0 KB
Line 
1#ifndef SHIFTGB_H
2#define SHIFTGB_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: shiftgb.h,v 1.3 2008-02-23 20:12:53 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_LPshift(poly p, int sh, int uptodeg, int lV,const ring r);
18poly p_mLPshift(poly p, int sh, int uptodeg, int lV,const ring r);
19
20int p_mLastVblock(poly p, int lV,const ring r);
21int p_LastVblock(poly p, int lV, const ring r);
22
23poly pLPshift(poly p, int sh, int uptodeg, int lV);
24poly pmLPshift(poly p, int sh, int uptodeg, int lV);
25
26int pLastVblock(poly p, int lV);
27int pmLastVblock(poly p, int lV);
28
29int pFirstVblock(poly p, int lV);
30int pmFirstVblock(poly p, int lV);
31
32int isInV(poly p, int lV);
33
34int itoInsert(poly p, int uptodeg, int lV, const ring r);
35
36#endif
Note: See TracBrowser for help on using the repository browser.