source: git/kernel/GBEngine/shiftgb.h @ b3594cb

spielwiese
Last change on this file since b3594cb was b95359, checked in by Karim Abou Zeid <karim23697@…>, 5 years ago
Small fix
  • Property mode set to 100644
File size: 535 bytes
Line 
1#ifndef SHIFTGB_H
2#define SHIFTGB_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: kernel: utils for kStd
8*/
9
10#include "kernel/structs.h"
11#ifdef HAVE_SHIFTBBA
12#include "polys/nc/nc.h"
13
14poly p_LPCopyAndShiftLM(poly p, int sh, const ring r);
15#define pLPCopyAndShiftLM(p, sh) p_LPCopyAndShiftLM(p, sh, currRing)
16
17int p_mLPmaxPossibleShift(poly p, const ring r);
18#define pmLPmaxPossibleShift(p) p_mLPmaxPossibleShift(p, currRing)
19
20#endif
21#endif
Note: See TracBrowser for help on using the repository browser.