Changeset e2f520 in git
- Timestamp:
- Jan 22, 2003, 7:12:06 PM (21 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e736d25c6e725fba437b4e8fc4d66e6e5668fd4e
- Parents:
- 192bef4631c6cc6db4fb74df7f93d1578341da2d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/tgb.cc
r192bef4 re2f520 1348 1348 { 1349 1349 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)*/); 1352 1354 must_expand=TRUE; 1353 1355 } … … 1555 1557 if (pLmEqual(obj->P->p,strat->S[j])) 1556 1558 { 1559 int dummy_len; 1557 1560 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)*/); 1560 1564 } 1561 1565 else … … 1569 1573 ) 1570 1574 { 1575 int dummy_len; 1571 1576 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)*/); 1574 1580 must_expand=TRUE; 1575 1581 }
Note: See TracChangeset
for help on using the changeset viewer.