Changeset f6c77e9 in git for kernel/GBEngine


Ignore:
Timestamp:
Nov 19, 2014, 2:38:10 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
66fa7159e6605255e24cc1278b31fb5bb0e9f109
Parents:
74ec76637457a12f86e1aac1d0d62d5918e92d61
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-11-19 14:38:10+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-11-19 14:38:37+01:00
Message:
fix: pLength in completeReduceFac (from master)
Location:
kernel/GBEngine
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kstdfac.cc

    r74ec766 rf6c77e9  
    322322      PrintS("-");mflush();
    323323    }
     324    int i;
     325    if (strat->redTailChange)
     326    {
     327      for(i=strat->tl;i>=0;i--)
     328      {
     329        strat->initEcart(&strat->T[i]);
     330      }
     331    }
    324332    ideal fac;
    325333    ideal fac_copy;
     
    334342    deleteInS(si,strat);
    335343
    336     int i;
    337344    for(i=IDELEMS(fac)-1;i>=0;i--)
    338345    {
  • kernel/GBEngine/kutil.cc

    r74ec766 rf6c77e9  
    11131113* used in mora case and if pLexOrder & sugar in bba case
    11141114*/
    1115 void initEcartNormal (LObject* h)
     1115void initEcartNormal (TObject* h)
    11161116{
    11171117  h->FDeg = h->pFDeg();
     
    11211121}
    11221122
    1123 void initEcartBBA (LObject* h)
     1123void initEcartBBA (TObject* h)
    11241124{
    11251125  h->FDeg = h->pFDeg();
  • kernel/GBEngine/kutil.h

    r74ec766 rf6c77e9  
    277277  int (*red)(LObject * L,kStrategy strat);
    278278  int (*red2)(LObject * L,kStrategy strat);
    279   void (*initEcart)(LObject * L);
     279  void (*initEcart)(TObject * L);
    280280  int (*posInT)(const TSet T,const int tl,LObject &h);
    281281  int (*posInLSba)(const LSet set, const int length,
     
    507507#endif
    508508
    509 void initEcartNormal (LObject* h);
    510 void initEcartBBA (LObject* h);
     509void initEcartNormal (TObject* h);
     510void initEcartBBA (TObject* h);
    511511void initS (ideal F, ideal Q,kStrategy strat);
    512512void initSL (ideal F, ideal Q,kStrategy strat);
Note: See TracChangeset for help on using the changeset viewer.