Changeset 7e67625 in git for kernel/kutil.cc


Ignore:
Timestamp:
Apr 8, 2009, 7:32:57 PM (14 years ago)
Author:
Motsak Oleksandr <motsak@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
f2b1ce61cdfede9548e35b96cfaf871abe893ba9
Parents:
b1c0a9e98fc3aee487e8cd43be67cb47d4352fe7
Message:
*motsak: enterSSpecial - missing case? fixed


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

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    rb1c0a9 r7e67625  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.132 2009-04-08 17:21:58 motsak Exp $ */
     4/* $Id: kutil.cc,v 1.133 2009-04-08 17:32:57 motsak Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    30823082{
    30833083  int j;
     3084  const int iCompH = pGetComp(h);
    30843085
    30853086  for (j=0; j<=k; j++)
    30863087  {
    3087     if ((pGetComp(h)==pGetComp(strat->S[j]))
    3088     || (0==pGetComp(strat->S[j])))
     3088    const int iCompSj = pGetComp(strat->S[j]);
     3089    if ((iCompH==iCompSj)
     3090        || (0==iCompH) // TODO: what about this case???
     3091        || (0==iCompSj))
    30893092    {
    30903093      enterOnePairSpecial(j,h,ecart,strat, atR);
Note: See TracChangeset for help on using the changeset viewer.