My Project
cfSubResGcd.h
Go to the documentation of this file.
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
12 subResGCD_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
18 subResGCD_0( const CanonicalForm & f, const CanonicalForm & g );
19 #endif
g
Definition: cfModGcd.cc:4092
CanonicalForm subResGCD_p(const CanonicalForm &f, const CanonicalForm &g)
subresultant GCD over finite fields. In case things become too dense we switch to a modular algorithm
Definition: cfSubResGcd.cc:12
CanonicalForm subResGCD_0(const CanonicalForm &f, const CanonicalForm &g)
subresultant GCD over Z.
Definition: cfSubResGcd.cc:167
FILE * f
Definition: checklibs.c:9
factory's main class
Definition: canonicalform.h:86