Changeset b981502 in git for kernel/kstd1.cc


Ignore:
Timestamp:
Jan 4, 2007, 11:42:46 AM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
dfd4fc6ea94830e53cf1a0e58c158d96a83f0b47
Parents:
2a289e745e1424ffd122e32acdcfe8fe0f9a1a93
Message:
*hannes:  syzComp handling


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

Legend:

Unmodified
Added
Removed
  • kernel/kstd1.cc

    r2a289e rb981502  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kstd1.cc,v 1.15 2007-01-03 00:17:10 motsak Exp $ */
     4/* $Id: kstd1.cc,v 1.16 2007-01-04 10:42:45 Singular Exp $ */
    55/*
    66* ABSTRACT:
     
    264264      // this has the side effect of setting h->length
    265265      h->ecart = h->pLDeg(strat->LDegLast) - h->GetpFDeg();
    266 
     266#if 0
    267267    if (strat->syzComp!=0)
    268268    {
     
    277277      }
    278278    }
     279#endif
    279280    /*- try to reduce the s-polynomial -*/
    280281    pass++;
     
    373374    h->SetShortExpVector();
    374375
     376#if 0
    375377    if ((strat->syzComp!=0) && !strat->honey)
    376378    {
     
    387389      }
    388390    }
     391#endif   
    389392    if (!strat->homog)
    390393    {
     
    20172020  {
    20182021#ifdef NO_LDEG
    2019     if (!strat->syzComp)
     2022    if (strat->syzComp==0)
    20202023      return TRUE;
    20212024#else
    2022     if ((strat->homog || strat->honey) && !strat->syzComp)
     2025    if ((strat->homog || strat->honey) && (strat->syzComp==0))
    20232026      return TRUE;
    20242027#endif
     
    20272030  {
    20282031    assume(strat->red == redEcart);
    2029     if (strat->honey && !strat->syzComp)
     2032    if (strat->honey && (strat->syzComp==0))
    20302033      return TRUE;
    20312034  }
Note: See TracChangeset for help on using the changeset viewer.