Changeset e3cb321 in git


Ignore:
Timestamp:
Aug 27, 2012, 12:09:41 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
15a8798f94d754bd64208b67057a90d83f7a1c68
Parents:
bed38bf5866e00b80f470aad9b649340edd6d118
git-author:
Martin Lee <martinlee84@web.de>2012-08-27 12:09:41+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-09-05 15:00:01+02:00
Message:
chg: lower bound in evaluation point search
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/facFqFactorize.cc

    rbed38b re3cb321  
    719719  {
    720720    bound= pow ((double) p, (double) degree (getMipo(alpha)));
    721     bound= pow ((double) bound, (double) k);
     721    bound *= (double) k;
    722722  }
    723723  else if (GF)
    724724  {
    725725    bound= pow ((double) p, (double) getGFDegree());
    726     bound= pow ((double) bound, (double) k);
     726    bound *= (double) k;
    727727  }
    728728  else
Note: See TracChangeset for help on using the changeset viewer.