Changeset 2080e2 in git


Ignore:
Timestamp:
Jun 20, 2014, 3:26:46 PM (10 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
eed9638163b63f3a3b2759b6ab4975a10e059d77
Parents:
52a933f4f81e8fdac7d837b9d74844b06c55d49c
git-author:
Martin Lee <martinlee84@web.de>2014-06-20 15:26:46+02:00
git-committer:
Martin Lee <martinlee84@web.de>2014-06-24 12:06:05+02:00
Message:
chg: renamed cf_gcd_smallp.* to cfModGcd.*
Location:
factory
Files:
6 edited
2 moved

Legend:

Unmodified
Added
Removed
  • factory/Makefile.am

    r52a933f r2080e2  
    2929                cf_gcd.cc \
    3030                cfGcdAlgExt.cc \
    31                 cf_gcd_smallp.cc \
    3231                cfGcdUtil.cc \
    3332                cf_generator.cc \
     
    4140                cf_map.cc \
    4241                cf_map_ext.cc \
     42                cfModGcd.cc \
    4343                cfNewtonPolygon.cc \
    4444                cfNTLzzpEXGCD.cc \
     
    112112                cf_globals.h \
    113113                cfGcdAlgExt.h \
    114                 cf_gcd_smallp.h \
    115114                cfGcdUtil.h \
    116115                cf_hnf.h \
     
    119118                cf_map.h \
    120119                cf_map_ext.h \
     120                cfModGcd.h \
    121121                cfNewtonPolygon.h \
    122122                cfNTLzzpEXGCD.h \
  • factory/cfEzgcd.cc

    r52a933f r2080e2  
    2424#include "canonicalform.h"
    2525#include "cfEzgcd.h"
    26 #include "cf_gcd_smallp.h"
     26#include "cfModGcd.h"
    2727#include "cf_util.h"
    2828#include "cf_map_ext.h"
  • factory/cfModGcd.cc

    r52a933f r2080e2  
    11// -*- c++ -*-
    22//*****************************************************************************
    3 /** @file cf_gcd_smallp.cc
     3/** @file cfModGcd.cc
    44 *
    55 * This file implements the GCD of two polynomials over \f$ F_{p} \f$ ,
     
    4141#include "cf_primes.h"
    4242
    43 // iinline helper functions:
     43// inline helper functions:
    4444#include "cf_map_ext.h"
    4545
     
    5252#endif
    5353
    54 #include "cf_gcd_smallp.h"
     54#include "cfModGcd.h"
    5555
    5656TIMING_DEFINE_PRINT(gcd_recursion)
  • factory/cfModGcd.h

    r52a933f r2080e2  
    1 #ifndef CF_GCD_SMALL_H
    2 #define CF_GCD_SMALL_H
     1#ifndef CF_MOD_GCD_H
     2#define CF_MOD_GCD_H
    33// -*- c++ -*-
    44//*****************************************************************************
    5 /** @file cf_gcd_smallp.h
     5/** @file cfModGcd.h
    66 *
    77 * modular and sparse modular GCD algorithms over finite fields and Z.
  • factory/cf_gcd.cc

    r52a933f r2080e2  
    2525#include "cfGcdAlgExt.h"
    2626#include "cfSubResGcd.h"
    27 #include "cf_gcd_smallp.h"
     27#include "cfModGcd.h"
    2828
    2929#ifdef HAVE_NTL
  • factory/facFactorize.cc

    r52a933f r2080e2  
    2525#include "cf_random.h"
    2626#include "facHensel.h"
    27 #include "cf_gcd_smallp.h"
    2827#include "cf_map_ext.h"
    2928#include "cf_reval.h"
  • factory/facFqSquarefree.cc

    r52a933f r2080e2  
    1919#include "canonicalform.h"
    2020
    21 #include "cf_gcd_smallp.h"
    2221#include "cf_iter.h"
    2322#include "cf_map.h"
  • factory/facSparseHensel.cc

    r52a933f r2080e2  
    2020#include "facSparseHensel.h"
    2121#include "cf_algorithm.h"
    22 #include "cf_gcd_smallp.h"
     22#include "cfModGcd.h"
    2323#include "facFqFactorize.h"
    2424
Note: See TracChangeset for help on using the changeset viewer.