Changeset 8e1c4e in git for kernel/kutil.cc


Ignore:
Timestamp:
Jan 31, 2008, 5:13:55 PM (16 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
31e857fefc0db942580fac2470cb89c397ef32a8
Parents:
73c6d21631d8e2c06ed5fa2c6e5dd9c80ce49f14
Message:
kutil.cc:
extendedspoly fehler

pp_Mult_nn__T.cc:
nIsZero

rmodulon.cc:
gcd/lcm ringspezifisch, umsortiert


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

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    r73c6d21 r8e1c4e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.75 2008-01-30 18:56:36 wienand Exp $ */
     4/* $Id: kutil.cc,v 1.76 2008-01-31 16:13:54 wienand Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    26512651      }
    26522652#endif
    2653       poly tmp = p_ISet((long) ((p)->coef), currRing);
     2653      poly tmp = pInit();
     2654      pSetCoeff0(tmp, pGetCoeff(p));
    26542655      for (int i = 1; i <= currRing->N; i++)
    26552656      {
     
    26572658      }
    26582659      p_Setm(tmp, currRing);
     2660      pSetCoeff0(p, NULL);
    26592661      p = p_LmDeleteAndNext(p, strat->tailRing);
    26602662      pNext(tmp) = p;
     
    44204422  if ((strat->sl>=0)
    44214423#ifdef HAVE_RINGS
    4422        && nIsUnit(pGetCoeff(strat->L[strat->Ll].p))
     4424       && nIsUnit(pGetCoeff(strat->S[0]))
    44234425#endif
    44244426       && pIsConstant(strat->S[0]))
Note: See TracChangeset for help on using the changeset viewer.