Changeset f3a82f4 in git


Ignore:
Timestamp:
Feb 21, 2012, 3:45:42 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
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
Message:
fix: compilation errors with --enable-debugoutput
Location:
factory
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • factory/facBivar.cc

    r346edc8 rf3a82f4  
    233233                          "time for univariate factorization: ");
    234234    DEBOUTLN (cerr, "Lc (bufAeval)*prod (bufUniFactors)== bufAeval " <<
    235               prod (bufUniFactors)*Lc (bufAeval) == bufAeval);
     235              (prod (bufUniFactors)*Lc (bufAeval) == bufAeval));
    236236
    237237    TIMING_START (fac_uni_factorizer);
     
    243243                          "time for univariate factorization in y: ");
    244244    DEBOUTLN (cerr, "Lc (Aeval2)*prod (uniFactors2)== Aeval2 " <<
    245               prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2);
     245              (prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2));
    246246
    247247    if (bufUniFactors.getFirst().inCoeffDomain())
  • factory/facFqBivar.cc

    r346edc8 rf3a82f4  
    464464    return result;
    465465  }
    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));
    468468  CFList T, S;
    469469
     
    55885588                          "time for univariate factorization: ");
    55895589    DEBOUTLN (cerr, "Lc (bufAeval)*prod (bufUniFactors)== bufAeval " <<
    5590               prod (bufUniFactors)*Lc (bufAeval) == bufAeval);
     5590              (prod (bufUniFactors)*Lc (bufAeval) == bufAeval));
    55915591
    55925592    if (!derivXZero && !fail2)
     
    55975597                            "time for univariate factorization in y: ");
    55985598      DEBOUTLN (cerr, "Lc (Aeval2)*prod (uniFactors2)== Aeval2 " <<
    5599                 prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2);
     5599                (prod (bufUniFactors2)*Lc (bufAeval2) == bufAeval2));
    56005600    }
    56015601
  • factory/fac_multihensel.cc

    r346edc8 rf3a82f4  
    166166        A[i] = remainder( pk( a[i] * C0 ), P0[i], pk );
    167167    DEBOUTLN( cerr, "the first approximation of the correction coefficients is " << A );
    168 #ifdef DEBUGOUTPUT
     168/*#ifdef DEBUGOUTPUT
    169169    if ( check_dummy( A, P, Q ) - C != 0 )
    170170    {
     
    174174        DEBOUTLN( cerr, "              Q " << Q );
    175175    }
    176 #endif
     176#endif*/
    177177    for ( m = 0; m <= h && ( m == 0 || Dm != 0 ); m++ )
    178178    {
     
    216216        DEBOUTLN( cerr, "the correction coefficients at step " << m );
    217217        DEBOUTLN( cerr, "are now " << A );
    218 #ifdef DEBUGOUTPUT
     218/*#ifdef DEBUGOUTPUT
    219219    if ( check_dummy( A, P, Q ) - C != 0 ) {
    220220        DEBOUTLN( cerr, "there is an error detected, the correction coefficients do not" );
     
    223223        DEBOUTLN( cerr, "              Q " << Q );
    224224    }
    225 #endif
     225#endif*/
    226226    }
    227227    DEBDECLEVEL( cerr, "findCorrCoeffs" );
Note: See TracChangeset for help on using the changeset viewer.