Changeset f3a82f4 in git
- Timestamp:
- Feb 21, 2012, 3:45:42 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 0b618a776fb1b77afc08df17205c01272c15f277
- Parents:
- 346edc8b6fd87fc9063b76b6ec2fa61d0061899f
- git-author:
- Martin Lee <martinlee84@web.de>2012-02-21 15:45:42+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-02-22 15:31:05+01:00
- Location:
- factory
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facBivar.cc
r346edc8 rf3a82f4 233 233 "time for univariate factorization: "); 234 234 DEBOUTLN (cerr, "Lc (bufAeval)*prod (bufUniFactors)== bufAeval " << 235 prod (bufUniFactors)*Lc (bufAeval) == bufAeval);235 (prod (bufUniFactors)*Lc (bufAeval) == bufAeval)); 236 236 237 237 TIMING_START (fac_uni_factorizer); … … 243 243 "time for univariate factorization in y: "); 244 244 DEBOUTLN (cerr, "Lc (Aeval2)*prod (uniFactors2)== Aeval2 " << 245 prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2);245 (prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2)); 246 246 247 247 if (bufUniFactors.getFirst().inCoeffDomain()) -
factory/facFqBivar.cc
r346edc8 rf3a82f4 464 464 return result; 465 465 } 466 DEBOUTLN (cerr, "LC (F, 1)*prodMod (factors, M) == F " <<467 (LC (F, 1)*prodMod (factors, M) == F));466 DEBOUTLN (cerr, "LC (F, 1)*prodMod (factors, N) == F " << 467 (LC (F, 1)*prodMod (factors, N) == F)); 468 468 CFList T, S; 469 469 … … 5588 5588 "time for univariate factorization: "); 5589 5589 DEBOUTLN (cerr, "Lc (bufAeval)*prod (bufUniFactors)== bufAeval " << 5590 prod (bufUniFactors)*Lc (bufAeval) == bufAeval);5590 (prod (bufUniFactors)*Lc (bufAeval) == bufAeval)); 5591 5591 5592 5592 if (!derivXZero && !fail2) … … 5597 5597 "time for univariate factorization in y: "); 5598 5598 DEBOUTLN (cerr, "Lc (Aeval2)*prod (uniFactors2)== Aeval2 " << 5599 prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2);5599 (prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2)); 5600 5600 } 5601 5601 -
factory/fac_multihensel.cc
r346edc8 rf3a82f4 166 166 A[i] = remainder( pk( a[i] * C0 ), P0[i], pk ); 167 167 DEBOUTLN( cerr, "the first approximation of the correction coefficients is " << A ); 168 #ifdef DEBUGOUTPUT168 /*#ifdef DEBUGOUTPUT 169 169 if ( check_dummy( A, P, Q ) - C != 0 ) 170 170 { … … 174 174 DEBOUTLN( cerr, " Q " << Q ); 175 175 } 176 #endif 176 #endif*/ 177 177 for ( m = 0; m <= h && ( m == 0 || Dm != 0 ); m++ ) 178 178 { … … 216 216 DEBOUTLN( cerr, "the correction coefficients at step " << m ); 217 217 DEBOUTLN( cerr, "are now " << A ); 218 #ifdef DEBUGOUTPUT218 /*#ifdef DEBUGOUTPUT 219 219 if ( check_dummy( A, P, Q ) - C != 0 ) { 220 220 DEBOUTLN( cerr, "there is an error detected, the correction coefficients do not" ); … … 223 223 DEBOUTLN( cerr, " Q " << Q ); 224 224 } 225 #endif 225 #endif*/ 226 226 } 227 227 DEBDECLEVEL( cerr, "findCorrCoeffs" );
Note: See TracChangeset
for help on using the changeset viewer.