Changeset e2f520 in git


Ignore:
Timestamp:
Jan 22, 2003, 7:12:06 PM (21 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
e736d25c6e725fba437b4e8fc4d66e6e5668fd4e
Parents:
192bef4631c6cc6db4fb74df7f93d1578341da2d
Message:
*hannes: clean buckets -> len


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

Legend:

Unmodified
Added
Removed
  • Singular/tgb.cc

    r192bef4 re2f520  
    13481348            {
    13491349              PrintS("e");
    1350               sec_copy=kBucketClear(P.bucket);
    1351               kBucketInit(P.bucket,pCopy(sec_copy),pLength(sec_copy));
     1350              int dummy_len;
     1351              kBucketClear(P.bucket,&sec_copy,&dummy_len);
     1352              kBucketInit(P.bucket,pCopy(sec_copy),dummy_len
     1353                                                  /*pLength(sec_copy)*/);
    13521354              must_expand=TRUE;
    13531355            }
     
    15551557          if (pLmEqual(obj->P->p,strat->S[j]))
    15561558          {
     1559            int dummy_len;
    15571560            PrintS("b");
    1558             sec_copy=kBucketClear(obj->P->bucket);
    1559             kBucketInit(obj->P->bucket,pCopy(sec_copy),pLength(sec_copy));
     1561            kBucketClear(obj->P->bucket,&sec_copy,&dummy_len);
     1562            kBucketInit(obj->P->bucket,pCopy(sec_copy),dummy_len
     1563                                                         /*pLength(sec_copy)*/);
    15601564          }
    15611565          else
     
    15691573)
    15701574            {
     1575              int dummy_len;
    15711576              PrintS("e");
    1572               sec_copy=kBucketClear(obj->P->bucket);
    1573               kBucketInit(obj->P->bucket,pCopy(sec_copy),pLength(sec_copy));
     1577              kBucketClear(obj->P->bucket,&sec_copy,&dummy_len);
     1578              kBucketInit(obj->P->bucket,pCopy(sec_copy),dummy_len
     1579                                                         /*pLength(sec_copy)*/);
    15741580              must_expand=TRUE;
    15751581            }
Note: See TracChangeset for help on using the changeset viewer.