Changeset e371bf in git


Ignore:
Timestamp:
Feb 27, 2009, 12:05:15 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
9441bed67ec1c43393534ce897f991afa2709345
Parents:
2809766227df25a7bd9aff4ad7b14d7cde637824
Message:
*hannes: fix crash /ticket 92


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

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    r280976 re371bf  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.129 2009-02-26 15:55:02 Singular Exp $ */
     4/* $Id: kutil.cc,v 1.130 2009-02-27 11:05:15 Singular Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    47244724        deleteHC(&h, strat);
    47254725      }
    4726       if (TEST_OPT_INTSTRATEGY)
    4727       {
    4728         //pContent(h.p);
    4729         h.pCleardenom(); // also does a pContent
    4730       }
    4731       else
    4732       {
    4733         h.pNorm();
    4734       }
    47354726      if (h.p!=NULL)
    4736       {
     4727      // do not rely on the input being a SB!
     4728      {
     4729        if (TEST_OPT_INTSTRATEGY)
     4730        {
     4731          //pContent(h.p);
     4732          h.pCleardenom(); // also does a pContent
     4733        }
     4734        else
     4735        {
     4736          h.pNorm();
     4737        }
    47374738        strat->initEcart(&h);
    47384739        if (strat->sl==-1)
Note: See TracChangeset for help on using the changeset viewer.