Changeset fffb3f in git


Ignore:
Timestamp:
May 20, 1998, 12:08:41 PM (25 years ago)
Author:
Gerhard Pfister <pfister@…>
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
a0858c1f380d8ca8dfc2ab3e3542af4ba4ad5399
Parents:
023adb8fb6d2072bffd057e8797ab9fabb2e9769
Message:
* pfister/hannes: fixed: complete reduction of SB with interred
   (set locally option(redTail) if option redSB is set)


git-svn-id: file:///usr/local/Singular/svn/trunk@1920 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/kstd1.cc

    r023adb rfffb3f  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kstd1.cc,v 1.21 1998-05-14 13:04:16 Singular Exp $ */
     4/* $Id: kstd1.cc,v 1.22 1998-05-20 10:08:39 pfister Exp $ */
    55/*
    66* ABSTRACT:
     
    22182218  if (pOrdSgn == -1)   strat->honey = TRUE;
    22192219  initS(F,Q,strat);
     2220  if (TEST_OPT_REDSB)
     2221    strat->noTailReduction=FALSE;
    22202222  updateS(TRUE,strat);
    22212223  if (TEST_OPT_REDSB && TEST_OPT_INTSTRATEGY)
  • Singular/kutil.cc

    r023adb rfffb3f  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.20 1998-05-14 13:04:19 Singular Exp $ */
     4/* $Id: kutil.cc,v 1.21 1998-05-20 10:08:41 pfister Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    31023102          redSi = pHead(strat->S[i]);
    31033103          strat->S[i] = redBba(strat->S[i],i-1,strat);
    3104           if ((strat->ak!=0)&&(strat->S[i]!=NULL)) strat->S[i]=redQ(strat->S[i],i+1,strat); /*reduce S[i] mod Q*/
     3104          if ((strat->ak!=0)&&(strat->S[i]!=NULL))
     3105            strat->S[i]=redQ(strat->S[i],i+1,strat); /*reduce S[i] mod Q*/
    31053106          if (TEST_OPT_PROT && (pComp(redSi,strat->S[i])!=0))
    31063107          {
     
    32013202    if (toT)
    32023203    {
    3203       for (i=0; i<=strat->sl; i++)
     3204      for (i=1; i<=strat->sl; i++)
    32043205      {
    32053206        if (((strat->fromQ==NULL) || (strat->fromQ[i]==0))
Note: See TracChangeset for help on using the changeset viewer.