Changeset 015bba in git for kernel/kstd2.cc


Ignore:
Timestamp:
Jul 24, 2007, 1:20:32 PM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
2f0941897d4f1406c4c4e8071399248a0e0b6e1c
Parents:
1b42f8ee7cb0099770b3a0d6220176a29fdc4165
Message:
*hannes: NF/normalize


git-svn-id: file:///usr/local/Singular/svn/trunk@10239 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/kstd2.cc

    r1b42f8e r015bba  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kstd2.cc,v 1.48 2007-07-23 10:50:02 Singular Exp $ */
     4/* $Id: kstd2.cc,v 1.49 2007-07-24 11:20:32 Singular Exp $ */
    55/*
    66*  ABSTRACT -  Kernel: alg. of Buchberger
     
    13571357  int max_ind;
    13581358  p = redNF(pCopy(q),max_ind,strat);
    1359   if ((p!=NULL)&&(lazyReduce==0))
     1359  if ((p!=NULL)&&((lazyReduce & 1)==0))
    13601360  {
    13611361    BITSET save=test;
    13621362    test &= ~Sy_bit(OPT_INTSTRATEGY);
    13631363    if (TEST_OPT_PROT) { PrintS("t"); mflush(); }
    1364     p = redtailBba(p,max_ind,strat);
     1364    p = redtailBba(p,max_ind,strat,(lazyReduce & 4)==0);
    13651365    test=save;
    13661366  }
     
    14111411      if (TEST_OPT_PROT) { PrintS("r");mflush(); }
    14121412      p = redNF(pCopy(q->m[i]),max_ind,strat);
    1413       if ((p!=NULL)&&(lazyReduce==0))
     1413      if ((p!=NULL)&&((lazyReduce & 1)==0))
    14141414      {
    14151415        BITSET save=test;
    14161416        test &= ~Sy_bit(OPT_INTSTRATEGY);
    14171417        if (TEST_OPT_PROT) { PrintS("t"); mflush(); }
    1418         p = redtailBba(p,max_ind,strat);
     1418        p = redtailBba(p,max_ind,strat,(lazyReduce & 4)==0);
    14191419        test=save;
    14201420      }
Note: See TracChangeset for help on using the changeset viewer.