Changeset e16f7d in git
- Timestamp:
- May 4, 2012, 4:17:21 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- 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
- Location:
- factory
- Files:
-
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/Makefile.am
rc7417a re16f7d 78 78 facMul.cc \ 79 79 facSparseHensel.cc \ 80 fieldGCD.cc \81 80 ffops.cc \ 82 81 FLINTconvert.cc \ … … 161 160 facMul.h \ 162 161 facSparseHensel.h \ 163 fieldGCD.h \164 162 ffops.h \ 165 163 FLINTconvert.h \ -
factory/algext.cc
rc7417a re16f7d 23 23 #include "cf_algorithm.h" 24 24 #include "algext.h" 25 #include "fieldGCD.h"26 25 #include "cf_map.h" 27 26 #include "cf_generator.h" -
factory/cf_defs.h
rc7417a re16f7d 39 39 const int SW_USE_CHINREM_GCD=10; 40 40 const int SW_USE_QGCD=11; 41 const int SW_USE_fieldGCD=12; 42 const int SW_USE_FF_MOD_GCD=13; 41 const int SW_USE_FF_MOD_GCD=12; 43 42 //}}} 44 43 -
factory/cf_gcd.cc
rc7417a re16f7d 17 17 #include "templates/ftmpl_functions.h" 18 18 #include "algext.h" 19 #include "fieldGCD.h"20 19 #include "cf_gcd_smallp.h" 21 20 #include "cf_map_ext.h" … … 724 723 if ( getCharacteristic() != 0 ) 725 724 { 726 if ((!fc_and_gc_Univariate)727 && isOn(SW_USE_fieldGCD)728 && (getCharacteristic() >100))729 {730 return fieldGCD(f,g);731 }732 725 #ifdef HAVE_NTL 733 elseif ((!fc_and_gc_Univariate) && (isOn( SW_USE_EZGCD_P )))726 if ((!fc_and_gc_Univariate) && (isOn( SW_USE_EZGCD_P ))) 734 727 { 735 728 fc= EZGCD_P (fc, gc); -
factory/cf_switches.cc
rc7417a re16f7d 38 38 //On(SW_USE_EZGCD_P); // still testing 39 39 On(SW_USE_QGCD); 40 //On(SW_USE_fieldGCD);41 40 } 42 41 //}}} -
factory/cf_switches.h
rc7417a re16f7d 19 19 // 20 20 //}}} 21 const int CFSwitchesMax = 1 4;21 const int CFSwitchesMax = 13; 22 22 //}}} 23 23
Note: See TracChangeset
for help on using the changeset viewer.