source: git/factory/cfSubResGcd.h @ c1b52b

fieker-DuValspielwiese
Last change on this file since c1b52b was a4d2fa, checked in by Martin Lee <martinlee84@…>, 10 years ago
chg: renamed gcd_poly_* to subResGCD_
  • Property mode set to 100644
File size: 580 bytes
RevLine 
[f37df2]1/**
2 * @file cfSubResGcd.h
3 *
4 * subresultant pseudo remainder sequence GCD over finite fields and Z
5**/
[de19dd]6#ifndef CF_SUB_RES_GCD_H
7#define CF_SUB_RES_GCD_H
8
[f37df2]9/// subresultant GCD over finite fields.
10/// In case things become too dense we switch to a modular algorithm
[de19dd]11CanonicalForm
[a4d2fa]12subResGCD_p( const CanonicalForm & f, const CanonicalForm & g );
[de19dd]13
[f37df2]14/// subresultant GCD over Z.
[a4d2fa]15/// @note in contrast to subResGCD_p we do not switch to a modular algorithm
[f37df2]16///       in case things become too dense
[de19dd]17CanonicalForm
[a4d2fa]18subResGCD_0( const CanonicalForm & f, const CanonicalForm & g );
[de19dd]19#endif
Note: See TracBrowser for help on using the repository browser.