Changeset 7d1c995 in git for factory/algext.h
- Timestamp:
- May 31, 2011, 3:48:35 PM (12 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- a8e8b95ce901a8a52041639c48329ebc09efae2b
- Parents:
- 5b274570b3977c8b95131bdda194e0b179f17b8b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/algext.h
r5b2745 r7d1c995 1 #ifndef ALGEXT_H 2 #define ALGEXT_H 3 1 4 #include <config.h> 2 5 … … 5 8 6 9 CanonicalForm QGCD( const CanonicalForm &, const CanonicalForm & ); 7 CanonicalForm univarQGCD( const CanonicalForm & F, const CanonicalForm & G ); 8 //void tryEuclid( const CanonicalForm &, const CanonicalForm &, const CanonicalForm, CanonicalForm &, bool & ); 10 void tryEuclid( const CanonicalForm &, const CanonicalForm &, const CanonicalForm &, CanonicalForm &, bool & ); 9 11 void tryInvert( const CanonicalForm &, const CanonicalForm &, CanonicalForm &, bool & ); 10 12 bool hasFirstAlgVar( const CanonicalForm &, Variable & ); … … 12 14 void tryCRA( const CanonicalForm & x1, const CanonicalForm & q1, const CanonicalForm & x2, const CanonicalForm & q2, CanonicalForm & xnew, CanonicalForm & qnew, bool & fail ); 13 15 void tryExtgcd( const CanonicalForm & F, const CanonicalForm & G, CanonicalForm & result, CanonicalForm & s, CanonicalForm & t, bool & fail ); 16 int * leadDeg(const CanonicalForm & f, int *degs); 17 bool isLess(int *a, int *b, int lower, int upper); 18 bool isEqual(int *a, int *b, int lower, int upper); 19 CanonicalForm firstLC(const CanonicalForm & f); 14 20 21 #endif 15 22 16
Note: See TracChangeset
for help on using the changeset viewer.