Changeset 80c072 in git


Ignore:
Timestamp:
Jun 2, 2015, 11:16:55 AM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
22c3f2c3748d3c6aa16cfcf2ab75e3fd23da838d
Parents:
dd52bad670674af5262a9ad0f203b628a7a36a0e
Message:
optim. idLift(I,T): stop red as soon as L(p)>syzComp
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kstd2.cc

    rdd52ba r80c072  
    11251125      return 0;
    11261126    }
     1127    if (TEST_OPT_IDLIFT)
     1128    {
     1129      if (h->p!=NULL)
     1130      {
     1131        if(p_GetComp(h->p,currRing)>strat->syzComp)
     1132        {
     1133          h->Delete();
     1134          return 0;
     1135        }
     1136      }
     1137      else if (h->t_p!=NULL)
     1138      {
     1139        if(p_GetComp(h->t_p,strat->tailRing)>strat->syzComp)
     1140        {
     1141          h->Delete();
     1142          return 0;
     1143        }
     1144      }
     1145    }
    11271146    h->SetShortExpVector();
    11281147    not_sev = ~ h->sev;
     
    14751494    if (strat->overflow)
    14761495    {
    1477         if (!kStratChangeTailRing(strat)) { Werror("OVERFLOW.."); break;}
     1496      if (!kStratChangeTailRing(strat)) { Werror("OVERFLOW.."); break;}
    14781497    }
    14791498
Note: See TracChangeset for help on using the changeset viewer.