Changeset 6be182 in git


Ignore:
Timestamp:
Dec 20, 2000, 2:38:21 PM (23 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
15568a0d866c181ee4d8c0528c16f053e1324eac
Parents:
85e6342bb6f468ed007878e11c55866a1428299c
Message:
* bug fix in redtail


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

Legend:

Unmodified
Added
Removed
  • Singular/kutil.cc

    r85e6342 r6be182  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.88 2000-12-20 11:15:45 obachman Exp $ */
     4/* $Id: kutil.cc,v 1.89 2000-12-20 13:38:21 obachman Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    26442644  h = p;
    26452645  hn = pNext(h);
    2646   long op = pFDeg(hn, strat->tailRing);
     2646  long op = strat->tailRing->pFDeg(hn, strat->tailRing);
    26472647  long e;
    26482648  int l;
     
    26532653  while(hn != NULL)
    26542654  {
    2655     op = pFDeg(hn, strat->tailRing);
     2655    op = strat->tailRing->pFDeg(hn, strat->tailRing);
    26562656    if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done;
    26572657    e = pLDeg(hn, &l, strat->tailRing) - op;
     
    26792679      hn = pNext(h);
    26802680      if (hn == NULL) goto all_done;
    2681       op = pFDeg(hn, strat->tailRing);
     2681      op = strat->tailRing->pFDeg(hn, strat->tailRing);
    26822682      if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done;
    26832683      e = pLDeg(hn, &l) - op;
Note: See TracChangeset for help on using the changeset viewer.