source: git/factory/algext.h @ ceaa04

spielwiese
Last change on this file since ceaa04 was ad8e1b, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: QGCD, fieldGCD, etc git-svn-id: file:///usr/local/Singular/svn/trunk@10949 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 930 bytes
Line 
1#include <config.h>
2
3#include "canonicalform.h"
4#include "variable.h"
5
6CanonicalForm QGCD( const CanonicalForm &, const CanonicalForm & );
7CanonicalForm univarQGCD( const CanonicalForm & F, const CanonicalForm & G );
8//void tryEuclid( const CanonicalForm &, const CanonicalForm &, const CanonicalForm, CanonicalForm &, bool & );
9void tryInvert( const CanonicalForm &, const CanonicalForm &, CanonicalForm &, bool & );
10bool hasFirstAlgVar( const CanonicalForm &, Variable & );
11void tryBrownGCD( const CanonicalForm & F, const CanonicalForm & G, const CanonicalForm & M, CanonicalForm & result, bool & fail );
12void tryCRA( const CanonicalForm & x1, const CanonicalForm & q1, const CanonicalForm & x2, const CanonicalForm & q2, CanonicalForm & xnew, CanonicalForm & qnew, bool & fail );
13void tryExtgcd( const CanonicalForm & F, const CanonicalForm & G, CanonicalForm & result, CanonicalForm & s, CanonicalForm & t, bool & fail );
14
15
16
Note: See TracBrowser for help on using the repository browser.