Changeset c78743 in git
- Timestamp:
- Mar 10, 2014, 12:16:39 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 12f99241d3dee1439cdbdb7ec86a393c468c17fe
- Parents:
- e71776247d1b36b1b67837f43fa01c2a91b30dde
- git-author:
- Martin Lee <martinlee84@web.de>2014-03-10 12:16:39+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2014-03-11 11:06:27+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/misc_ip.cc
re71776 rc78743 1168 1168 { 1169 1169 // factory default settings: ----------------------------------------------- 1170 On(SW_USE_NTL);1171 1170 On(SW_USE_NTL_GCD_0); // On -> seg11 in Old/algnorm, Old/factor... 1172 1171 On(SW_USE_NTL_GCD_P); // On -> cyle in Short/brnoeth_s: fixed -
factory/cf_defs.h
re71776 rc78743 31 31 const int SW_USE_EZGCD = 4; 32 32 const int SW_USE_EZGCD_P = 5; 33 const int SW_USE_NTL=6; 34 const int SW_USE_NTL_GCD_0=7; 35 const int SW_USE_NTL_GCD_P=8; 36 const int SW_USE_NTL_SORT=9; 37 const int SW_USE_CHINREM_GCD=10; 38 const int SW_USE_QGCD=11; 39 const int SW_USE_FF_MOD_GCD=12; 33 const int SW_USE_NTL_GCD_0=6; 34 const int SW_USE_NTL_GCD_P=7; 35 const int SW_USE_NTL_SORT=8; 36 const int SW_USE_CHINREM_GCD=9; 37 const int SW_USE_QGCD=10; 38 const int SW_USE_FF_MOD_GCD=11; 40 39 //}}} 41 40 -
factory/cf_switches.cc
re71776 rc78743 30 30 // and set the default (recommended) On-values: 31 31 #ifdef HAVE_NTL 32 On(SW_USE_NTL);33 32 On(SW_USE_CHINREM_GCD); 34 33 //Off(SW_USE_NTL_GCD_0); -
factory/cf_switches.h
re71776 rc78743 18 18 // 19 19 //}}} 20 const int CFSwitchesMax = 1 3;20 const int CFSwitchesMax = 12; 21 21 //}}} 22 22
Note: See TracChangeset
for help on using the changeset viewer.