spielwiese
Last change
on this file since 800704 was
6ce030f,
checked in by Oleksandr Motsak <motsak@…>, 11 years ago
|
removal of the $Id$ svn tag from everywhere
NOTE: the git SHA1 may be used instead (only on special places)
NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
|
-
Property mode set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | //////////////////////////////////////////////////////////// |
---|
2 | // emacs edit mode for this file is -*- C++ -*- |
---|
3 | //////////////////////////////////////////////////////////// |
---|
4 | #ifndef HELPSTUFF_H |
---|
5 | #define HELPSTUFF_H |
---|
6 | bool mydivremt ( const CanonicalForm&, const CanonicalForm&, CanonicalForm&, CanonicalForm& ); |
---|
7 | /////////////////////////////////////////////////////////////// |
---|
8 | // Now some procedures used in MVMultiHensel and in Truefactors |
---|
9 | /////////////////////////////////////////////////////////////// |
---|
10 | CanonicalForm mod_power( const CanonicalForm & f, int k, int levelU); |
---|
11 | int subvardegree( const CanonicalForm & F, int levelF ); |
---|
12 | CanonicalForm change_poly( const CanonicalForm & f , const SFormList & Substitutionlist, int directionback ); |
---|
13 | |
---|
14 | /////////////////////////////////////////////////////////////// |
---|
15 | // Now some procedures used in SqrFree and in Factor |
---|
16 | /////////////////////////////////////////////////////////////// |
---|
17 | CFFList myappend( const CFFList & Inputlist, const CFFactor & TheFactor) ; |
---|
18 | CFFList myUnion(const CFFList & Inputlist1,const CFFList & Inputlist2); |
---|
19 | int Powerup( const int base , const int exp=1); |
---|
20 | inline int min ( const int a, const int b ){ |
---|
21 | return (a<=b ? a:b); |
---|
22 | } |
---|
23 | inline int max ( const int a, const int b ){ |
---|
24 | return (a>b ? a:b); |
---|
25 | } |
---|
26 | |
---|
27 | #endif /* HELPSTUFF_H */ |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.