Changeset 0d74e7 in git


Ignore:
Timestamp:
Jan 22, 2013, 3:57:23 PM (11 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b9f50b373314e74e83c7c060a651dd2913e1f033')
Children:
9879d0ac625f5a050088f8d60e287588372b507b
Parents:
b770bfdbb226b2a3128f6e2799e672f60ee9be55
git-author:
Martin Lee <martinlee84@web.de>2013-01-22 15:57:23+01:00
git-committer:
Martin Lee <martinlee84@web.de>2013-02-18 15:13:27+01:00
Message:
chg: switch to sparse modular GCD in some cases
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_gcd_smallp.cc

    rb770bf r0d74e7  
    3333#include "cfNewtonPolygon.h"
    3434#include "cf_algorithm.h"
     35#include "cf_primes.h"
    3536
    3637// iinline helper functions:
     
    49564957        }
    49574958        else
    4958           return N (d*GCD_small_p (F,G));
     4959        {
     4960          if (p >= cf_getBigPrime(0))
     4961            return N (d*sparseGCDFp (F,G));
     4962          else
     4963            return N (d*GCD_small_p (F,G));
     4964        }
    49594965      }
    49604966
Note: See TracChangeset for help on using the changeset viewer.