Changeset ff4e34f in git for Singular/kutil.cc


Ignore:
Timestamp:
Oct 4, 2000, 3:12:05 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
f103fb07c2e69147dd1bca55b8421e35361355a8
Parents:
122d498cedb975079e9eff3554a721e5e8f3af86
Message:
* buckets, lmBin, tailBin


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

Legend:

Unmodified
Added
Removed
  • Singular/kutil.cc

    r122d49 rff4e34f  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.63 2000-09-25 12:26:33 obachman Exp $ */
     4/* $Id: kutil.cc,v 1.64 2000-10-04 13:12:03 obachman Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    32433243  }
    32443244  else atT = 0;
     3245
     3246  if (strat->tailBin != NULL)
     3247    pNext(p.p)=p_ShallowCopyDelete(pNext(p.p),
     3248                                   (strat->tailRing != NULL ?
     3249                                    strat->tailRing : currRing),
     3250                                   strat->tailBin);
    32453251  strat->T[atT].p = p.p;
    32463252  strat->T[atT].ecart = p.ecart;
     
    32823288    strat->T[atT].length = p.length;
    32833289
    3284   strat->T[atT].pLength = p.pLength;
     3290  if (strat->tailBin != NULL)
     3291    pNext(p.p)=p_ShallowCopyDelete(pNext(p.p),
     3292                                   (strat->tailRing != NULL ?
     3293                                    strat->tailRing : currRing),
     3294                                   strat->tailBin);
     3295  if (strat->use_buckets && p.pLength <= 0)
     3296    strat->T[atT].pLength = pLength(p.p);
     3297  else
     3298    strat->T[atT].pLength = p.pLength;
     3299
    32853300  if (p.sev == 0)
    32863301  {
     
    36243639}
    36253640
    3626 void kFreeStrat(kStrategy strat)
    3627 {
    3628   omFreeSize(strat, sizeof(skStrategy));
    3629 }
    3630 
    36313641rOrderType_t spGetOrderType(ring r, int modrank, int syzcomp)
    36323642{
Note: See TracChangeset for help on using the changeset viewer.