Changeset 62347d in git


Ignore:
Timestamp:
Jul 18, 2019, 4:44:45 PM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
85e90d0575cfb88862ddb171d13f93bfd02f4c47
Parents:
1d01eb8483a3764689eea15e21e620c52312607e
Message:
add: switches for Flints gcd (char0/p)
Location:
factory
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_defs.h

    r1d01eb r62347d  
    4242/// set to 1 to use modular GCD over F_q
    4343static const int SW_USE_FF_MOD_GCD=7;
     44/// set to 1 to use Flints gcd over F_p
     45static const int SW_USE_FL_GCD_P=8;
     46/// set to 1 to use Flints gcd over Q/Z
     47static const int SW_USE_FL_GCD_0=9;
    4448
    4549/*ENDPUBLIC*/
  • factory/cf_switches.cc

    r1d01eb r62347d  
    3333  On(SW_USE_CHINREM_GCD);
    3434  //Off(SW_USE_NTL_SORT);
     35  On(SW_USE_FL_GCD_P);
     36  //On(SW_USE_FL_GCD_0);
    3537#endif
    3638  On(SW_USE_EZGCD);
  • factory/cf_switches.h

    r1d01eb r62347d  
    2020 *
    2121**/
    22 const int CFSwitchesMax = 8;
     22const int CFSwitchesMax = 10;
    2323
    2424/** class CFSwitches
Note: See TracChangeset for help on using the changeset viewer.