Changeset 64c923 in git
- Timestamp:
- Feb 16, 2012, 3:21:25 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- d9357b93f2957d0cd01e1c353822adb5598cc142
- Parents:
- 5b410740267969d96b217ae7a6dc01d921a86161
- git-author:
- Martin Lee <martinlee84@web.de>2012-02-16 15:21:25+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-04-04 14:42:25+02:00
- Location:
- factory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facMul.cc
r5b4107 r64c923 394 394 395 395 CanonicalForm 396 mulNTL (const CanonicalForm& F, const CanonicalForm& G )396 mulNTL (const CanonicalForm& F, const CanonicalForm& G, const modpk& b) 397 397 { 398 398 if (F.inCoeffDomain() || G.inCoeffDomain() || getCharacteristic() == 0) … … 448 448 449 449 CanonicalForm 450 modNTL (const CanonicalForm& F, const CanonicalForm& G )450 modNTL (const CanonicalForm& F, const CanonicalForm& G, const modpk& b) 451 451 { 452 452 if (F.inCoeffDomain() && G.isUnivariate()) … … 511 511 512 512 CanonicalForm 513 divNTL (const CanonicalForm& F, const CanonicalForm& G )513 divNTL (const CanonicalForm& F, const CanonicalForm& G, const modpk& b) 514 514 { 515 515 if (F.inCoeffDomain() && G.isUnivariate()) -
factory/facMul.h
r5b4107 r64c923 16 16 17 17 #include "canonicalform.h" 18 #include "fac_util.h" 18 19 19 20 /// multiplication of univariate polys over a finite field using NTL, if we are … … 23 24 CanonicalForm 24 25 mulNTL (const CanonicalForm& F, ///< [in] a univariate poly 25 const CanonicalForm& G ///< [in] a univariate poly 26 const CanonicalForm& G, ///< [in] a univariate poly 27 const modpk& b= modpk() ///< [in] coeff bound 26 28 ); 27 29 … … 32 34 CanonicalForm 33 35 modNTL (const CanonicalForm& F, ///< [in] a univariate poly 34 const CanonicalForm& G ///< [in] a univariate poly 36 const CanonicalForm& G, ///< [in] a univariate poly 37 const modpk& b= modpk() ///< [in] coeff bound 35 38 ); 36 39 … … 41 44 CanonicalForm 42 45 divNTL (const CanonicalForm& F, ///< [in] a univariate poly 43 const CanonicalForm& G ///< [in] a univariate poly 46 const CanonicalForm& G, ///< [in] a univariate poly 47 const modpk& b= modpk() ///< [in] coeff bound 44 48 ); 45 49
Note: See TracChangeset
for help on using the changeset viewer.