Changeset 911444 in git
- Timestamp:
- Jun 17, 2010, 3:53:09 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- dabc64ca3d2580305b6389d9503d56447fbebf34
- Parents:
- fecc08cb1fbac7aebf01c221287ec9360849a8b4
- Location:
- factory
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gcd_smallp.cc
rfecc08 r911444 39 39 #endif 40 40 41 #include "cf_gcd_smallp.h" 42 41 43 #ifdef HAVE_NTL 42 44 … … 337 339 /// based on Alg. 7.2. as described in "Algorithms for 338 340 /// Computer Algebra" by Geddes, Czapor, Labahn 339 static inlineCanonicalForm341 CanonicalForm 340 342 GCD_Fp_extension (const CanonicalForm& F, const CanonicalForm& G, 341 343 Variable & alpha, CFList& l, bool& top_level) … … 577 579 /// faster field arithmetics, however it might fail if the input is large since 578 580 /// the size of the base field is bounded by 2^16, output is monic 579 inline 580 CanonicalForm 581 GCD_GF (const CanonicalForm& F, const CanonicalForm& G, CFList& l, 582 bool& top_level) 581 CanonicalForm GCD_GF (const CanonicalForm& F, const CanonicalForm& G, 582 CFList& l, bool& top_level) 583 583 { 584 584 CanonicalForm A= F; … … 828 828 } 829 829 830 static inline831 830 CanonicalForm GCD_small_p (const CanonicalForm& F, const CanonicalForm& G, 832 831 bool& top_level, CFList& l) -
factory/cf_gcd_smallp.h
rfecc08 r911444 54 54 55 55 /// GCD of A and B over GF 56 CanonicalForm GCD_GF (const CanonicalForm& A, const CanonicalForm& B)56 static inline CanonicalForm GCD_GF (const CanonicalForm& A, const CanonicalForm& B) 57 57 { 58 58 ASSERT (CFFactory::gettype() == GaloisFieldDomain, -
factory/cf_map_ext.h
rfecc08 r911444 18 18 **/ 19 19 //***************************************************************************** 20 21 #include "cf_map_ext.cc"22 20 23 21 CanonicalForm GFMapUp (const CanonicalForm & F, int k); -
factory/facFqBivar.cc
rfecc08 r911444 33 33 #include "cf_map.h" 34 34 #include "cf_gcd_smallp.h" 35 #include "DegreePattern.cc"36 #include "facFqBivarUtil.cc"37 35 #include "facFqBivar.h" 38 36
Note: See TracChangeset
for help on using the changeset viewer.