source: git/factory/algext.h @ 5df7d0

spielwiese
Last change on this file since 5df7d0 was 5df7d0, checked in by Martin Lee <martinlee84@…>, 12 years ago
replaced tryCRA by tryNewtonInterp and deleted obsolete tryCRA reduce result in tryBrownGCD modulo M make modular image really monic (i.e. invert firstLC (g_image) instead of lc (g_image)) put reduce into header git-svn-id: file:///usr/local/Singular/svn/trunk@14316 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[7d1c995]1#ifndef ALGEXT_H
2#define ALGEXT_H
3
[c99b6b]4#include <config.h>
5
6#include "canonicalform.h"
7#include "variable.h"
8
9CanonicalForm QGCD( const CanonicalForm &, const CanonicalForm & );
[a8e8b9]10void tryDivrem (const CanonicalForm&, const CanonicalForm&, CanonicalForm&,
11                CanonicalForm&, CanonicalForm&, const CanonicalForm&,
12                bool&);
[7d1c995]13void tryEuclid( const CanonicalForm &, const CanonicalForm &, const CanonicalForm &, CanonicalForm &, bool & );
[c99b6b]14void tryInvert( const CanonicalForm &, const CanonicalForm &, CanonicalForm &, bool & );
[359d742]15bool hasFirstAlgVar( const CanonicalForm &, Variable & );
[fe2d4c]16void tryBrownGCD( const CanonicalForm & F, const CanonicalForm & G, const CanonicalForm & M, CanonicalForm & result, bool & fail, bool topLevel= true );
[359d742]17void tryExtgcd( const CanonicalForm & F, const CanonicalForm & G, CanonicalForm & result, CanonicalForm & s, CanonicalForm & t, bool & fail );
[7d1c995]18int * leadDeg(const CanonicalForm & f, int *degs);
19bool isLess(int *a, int *b, int lower, int upper);
20bool isEqual(int *a, int *b, int lower, int upper);
21CanonicalForm firstLC(const CanonicalForm & f);
[5df7d0]22CanonicalForm reduce(const CanonicalForm & f, const CanonicalForm & M);
[359d742]23
[7d1c995]24#endif
[359d742]25
Note: See TracBrowser for help on using the repository browser.