Changeset c7417a in git for Singular/extra.cc


Ignore:
Timestamp:
May 8, 2012, 2:35:16 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
e16f7dfb67c54f6993ce7760ec116a095583a839
Parents:
e88604606ebcc801238094c34dfbfce2fac4f008
git-author:
Martin Lee <martinlee84@web.de>2012-05-08 14:35:16+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-05-11 11:06:45+02:00
Message:
chg: deleted stuff related to sparse modular gcd outside of factory
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    re88604 rc7417a  
    35813581          Print("EZGCD_P:%d (use EZGCD_P for gcd of polynomials in char p)\n",isOn(SW_USE_EZGCD_P));
    35823582          Print("CRGCD:%d (use chinese Remainder for gcd of polynomials in char 0)\n",isOn(SW_USE_CHINREM_GCD));
    3583           Print("SPARSEMOD:%d (use SPARSEMOD for gcd of polynomials in char 0)\n",isOn(SW_USE_SPARSEMOD));
    35843583          Print("QGCD:%d (use QGCD for gcd of polynomials in alg. ext.)\n",isOn(SW_USE_QGCD));
    35853584          Print("FGCD:%d (use fieldGCD for gcd of polynomials in Z/p)\n",isOn(SW_USE_fieldGCD));
     
    36003599          if (strcmp(s,"EZGCD_P")==0) { if (d) On(SW_USE_EZGCD_P); else Off(SW_USE_EZGCD_P); } else
    36013600          if (strcmp(s,"CRGCD")==0) { if (d) On(SW_USE_CHINREM_GCD); else Off(SW_USE_CHINREM_GCD); } else
    3602           if (strcmp(s,"SPARSEMOD")==0) { if (d) On(SW_USE_SPARSEMOD); else Off(SW_USE_SPARSEMOD); } else
    36033601          if (strcmp(s,"QGCD")==0) { if (d) On(SW_USE_QGCD); else Off(SW_USE_QGCD); } else
    36043602          if (strcmp(s,"FGCD")==0) { if (d) On(SW_USE_fieldGCD); else Off(SW_USE_fieldGCD); } else
Note: See TracChangeset for help on using the changeset viewer.