source: git/kernel/shiftgb.h @ 171950

fieker-DuValspielwiese
Last change on this file since 171950 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
RevLine 
[3a67ea7]1#ifndef SHIFTGB_H
2#define SHIFTGB_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
[ad1c3b]6/* $Id: shiftgb.h,v 1.4 2008-03-13 19:25:49 levandov Exp $ */
[3a67ea7]7/*
8* ABSTRACT: kernel: utils for kStd
9*/
10
11#include "structs.h"
12#include "gring.h"
13
[4d2ab5c]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
[ad1c3b]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
[4d2ab5c]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
[cb0fbe]29poly pLPshift(poly p, int sh, int uptodeg, int lV);
30poly pmLPshift(poly p, int sh, int uptodeg, int lV);
[3a67ea7]31
[cb0fbe]32int pLastVblock(poly p, int lV);
33int pmLastVblock(poly p, int lV);
[3a67ea7]34
[4d2ab5c]35int pFirstVblock(poly p, int lV);
36int pmFirstVblock(poly p, int lV);
37
[3a67ea7]38int isInV(poly p, int lV);
39
[4d2ab5c]40int itoInsert(poly p, int uptodeg, int lV, const ring r);
41
[3a67ea7]42#endif
Note: See TracBrowser for help on using the repository browser.