Changeset df744f in git for kernel/tgb.cc
- Timestamp:
- Jun 8, 2006, 10:12:51 AM (17 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- a48e1999411528d3925391351d47f42ca54765b4
- Parents:
- 9cf06bf5bb055050a3eb4ad285a06b788c79823c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/tgb.cc
r9cf06bf rdf744f 5 5 * Computer Algebra System SINGULAR * 6 6 ****************************************/ 7 /* $Id: tgb.cc,v 1.9 5 2006-06-08 08:01:51 bricken Exp $ */7 /* $Id: tgb.cc,v 1.96 2006-06-08 08:12:51 bricken Exp $ */ 8 8 /* 9 9 * ABSTRACT: slimgb and F4 implementation … … 320 320 } 321 321 #endif 322 static intdo_pELength(poly p, slimgb_alg* c, int dlm=-1){322 static wlen_type do_pELength(poly p, slimgb_alg* c, int dlm=-1){ 323 323 if(p==NULL) return 0; 324 ints=0;324 wlen_type s=0; 325 325 poly pi=p; 326 326 if(dlm<0){ … … 343 343 wlen_type pELength(poly p, ring r){ 344 344 if(p==NULL) return 0; 345 ints=0;345 wlen_type s=0; 346 346 poly pi=p; 347 347 int dlm; … … 362 362 } 363 363 364 intkEBucketLength(kBucket* b, poly lm,slimgb_alg* ca)364 wlen_type kEBucketLength(kBucket* b, poly lm,slimgb_alg* ca) 365 365 { 366 ints=0;366 wlen_type s=0; 367 367 if(lm==NULL){ 368 368 lm=kBucketGetLm(b);
Note: See TracChangeset
for help on using the changeset viewer.