Changeset 42253a in git


Ignore:
Timestamp:
May 4, 2012, 4:25:07 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
e699d86f1d122e6f33ebbdf5cd73abd7985274e2
Parents:
e16f7dfb67c54f6993ce7760ec116a095583a839
git-author:
Martin Lee <martinlee84@web.de>2012-05-04 16:25:07+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-05-11 11:06:45+02:00
Message:
chg: deleted fieldGCD related stuff outside of factory
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    re16f7d r42253a  
    35823582          Print("CRGCD:%d (use chinese Remainder for gcd of polynomials in char 0)\n",isOn(SW_USE_CHINREM_GCD));
    35833583          Print("QGCD:%d (use QGCD for gcd of polynomials in alg. ext.)\n",isOn(SW_USE_QGCD));
    3584           Print("FGCD:%d (use fieldGCD for gcd of polynomials in Z/p)\n",isOn(SW_USE_fieldGCD));
    35853584#endif
    35863585          Print("homog:%d (use homog. test for factorization of polynomials)\n",singular_homog_flag);
     
    36003599          if (strcmp(s,"CRGCD")==0) { if (d) On(SW_USE_CHINREM_GCD); else Off(SW_USE_CHINREM_GCD); } else
    36013600          if (strcmp(s,"QGCD")==0) { if (d) On(SW_USE_QGCD); else Off(SW_USE_QGCD); } else
    3602           if (strcmp(s,"FGCD")==0) { if (d) On(SW_USE_fieldGCD); else Off(SW_USE_fieldGCD); } else
    36033601#endif
    36043602          if (strcmp(s,"homog")==0) { if (d) singular_homog_flag=1; else singular_homog_flag=0; } else
  • Singular/misc_ip.cc

    re16f7d r42253a  
    10901090  On(SW_USE_CHINREM_GCD);
    10911091  //On(SW_USE_FF_MOD_GCD);
    1092   //On(SW_USE_fieldGCD);
    10931092  On(SW_USE_EZGCD_P);
    10941093  On(SW_USE_QGCD);
  • libpolys/polys/clapsing.cc

    re16f7d r42253a  
    7878    {
    7979      bool b1=isOn(SW_USE_QGCD);
    80       bool b2=isOn(SW_USE_fieldGCD);
    8180      if ( rField_is_Q_a(r) ) On(SW_USE_QGCD);
    82       else                   On(SW_USE_fieldGCD);
    8381      CanonicalForm mipo=convSingPFactoryP(r->cf->extRing->qideal->m[0],
    8482                                           r->cf->extRing);
     
    8886      res= convFactoryAPSingAP( gcd( F, G ),r );
    8987      if (!b1) Off(SW_USE_QGCD);
    90       if (!b2) Off(SW_USE_fieldGCD);
    9188    }
    9289    else
Note: See TracChangeset for help on using the changeset viewer.