Changeset e16f7d in git


Ignore:
Timestamp:
May 4, 2012, 4:17:21 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
42253a424aaf4fe8863a5381517748f9af9bb4c1
Parents:
c7417a693b6ec603fa87535be7e9ec143b3f1518
git-author:
Martin Lee <martinlee84@web.de>2012-05-04 16:17:21+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-05-11 11:06:45+02:00
Message:
chg: deleted fieldGCD
Location:
factory
Files:
2 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • factory/Makefile.am

    rc7417a re16f7d  
    7878                facMul.cc \
    7979                facSparseHensel.cc \
    80                 fieldGCD.cc \
    8180                ffops.cc \
    8281                FLINTconvert.cc \
     
    161160                facMul.h \
    162161                facSparseHensel.h \
    163                 fieldGCD.h \
    164162                ffops.h \
    165163                FLINTconvert.h \
  • factory/algext.cc

    rc7417a re16f7d  
    2323#include "cf_algorithm.h"
    2424#include "algext.h"
    25 #include "fieldGCD.h"
    2625#include "cf_map.h"
    2726#include "cf_generator.h"
  • factory/cf_defs.h

    rc7417a re16f7d  
    3939const int SW_USE_CHINREM_GCD=10;
    4040const int SW_USE_QGCD=11;
    41 const int SW_USE_fieldGCD=12;
    42 const int SW_USE_FF_MOD_GCD=13;
     41const int SW_USE_FF_MOD_GCD=12;
    4342//}}}
    4443
  • factory/cf_gcd.cc

    rc7417a re16f7d  
    1717#include "templates/ftmpl_functions.h"
    1818#include "algext.h"
    19 #include "fieldGCD.h"
    2019#include "cf_gcd_smallp.h"
    2120#include "cf_map_ext.h"
     
    724723  if ( getCharacteristic() != 0 )
    725724  {
    726     if ((!fc_and_gc_Univariate)
    727     && isOn(SW_USE_fieldGCD)
    728     && (getCharacteristic() >100))
    729     {
    730       return fieldGCD(f,g);
    731     }
    732725    #ifdef HAVE_NTL
    733     else if ((!fc_and_gc_Univariate) && (isOn( SW_USE_EZGCD_P )))
     726    if ((!fc_and_gc_Univariate) && (isOn( SW_USE_EZGCD_P )))
    734727    {
    735728      fc= EZGCD_P (fc, gc);
  • factory/cf_switches.cc

    rc7417a re16f7d  
    3838  //On(SW_USE_EZGCD_P); // still testing
    3939  On(SW_USE_QGCD);
    40   //On(SW_USE_fieldGCD);
    4140}
    4241//}}}
  • factory/cf_switches.h

    rc7417a re16f7d  
    1919//
    2020//}}}
    21 const int CFSwitchesMax = 14;
     21const int CFSwitchesMax = 13;
    2222//}}}
    2323
Note: See TracChangeset for help on using the changeset viewer.