source: git/kernel/shiftgb.h @ 4e35a89

spielwiese
Last change on this file since 4e35a89 was 599326, checked in by Kai Krüger <krueger@…>, 14 years ago
Anne, Kai, Frank: - changes to #include "..." statements to allow cleaner build structure - affected directories: omalloc, kernel, Singular - not yet done: IntergerProgramming git-svn-id: file:///usr/local/Singular/svn/trunk@13032 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$ */
7/*
8* ABSTRACT: kernel: utils for kStd
9*/
10
11#include <kernel/structs.h>
12#ifdef HAVE_SHIFTBBA
13#include <kernel/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);
40int poly_isInV(poly p, int lV);
41int ideal_isInV(ideal I, int lV);
42
43int itoInsert(poly p, int uptodeg, int lV, const ring r);
44
45#endif
46#endif
Note: See TracBrowser for help on using the repository browser.