source: git/factory/cfSubResGcd.h @ c1b52b

spielwiese
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
Line 
1/**
2 * @file cfSubResGcd.h
3 *
4 * subresultant pseudo remainder sequence GCD over finite fields and Z
5**/
6#ifndef CF_SUB_RES_GCD_H
7#define CF_SUB_RES_GCD_H
8
9/// subresultant GCD over finite fields.
10/// In case things become too dense we switch to a modular algorithm
11CanonicalForm
12subResGCD_p( const CanonicalForm & f, const CanonicalForm & g );
13
14/// subresultant GCD over Z.
15/// @note in contrast to subResGCD_p we do not switch to a modular algorithm
16///       in case things become too dense
17CanonicalForm
18subResGCD_0( const CanonicalForm & f, const CanonicalForm & g );
19#endif
Note: See TracBrowser for help on using the repository browser.