Changeset fe3266 in git for kernel/syz.cc


Ignore:
Timestamp:
Jun 2, 2004, 3:12:31 PM (20 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
cafdaf8110d8aad48341d782f33e48519cd06da1
Parents:
ec34383ab99ba9b240d1e68009af973c819a3798
Message:
*hannes: optimization


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

Legend:

Unmodified
Added
Removed
  • kernel/syz.cc

    rec3438 rfe3266  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: syz.cc,v 1.2 2004-04-16 17:18:35 levandov Exp $ */
     4/* $Id: syz.cc,v 1.3 2004-06-02 13:12:31 Singular Exp $ */
    55
    66/*
     
    266266      while ((p!=NULL) && (pGetComp(p)==k))
    267267      {
     268        /*
    268269        pp = pNext(p);
    269270        pNext(p) = NULL;
    270271        pDelete(&p);
    271272        p = pp;
     273        */
     274        pLmDelete(&p);
    272275      }
    273276      up->m[i] = p;
     
    278281          if (pGetComp(pNext(p))==k)
    279282          {
     283            /*
    280284            pp = pNext(pNext(p));
    281285            pNext(pNext(p)) = NULL;
    282286            pDelete(&pNext(p));
    283287            pNext(p) = pp;
     288            */
     289            pLmDelete(&pNext(p));
    284290          }
    285291          else
     
    316322          j = pGetComp(reddeg0->m[i]);
    317323          pDelete(&(res[index]->m[j-1]));
    318           res[index]->m[j-1] = NULL;
     324          /*res[index]->m[j-1] = NULL;*/
    319325          (*have_del)[j-1] = 1;
    320326        }
Note: See TracChangeset for help on using the changeset viewer.