Changeset 271730 in git
- Timestamp:
- Mar 11, 2010, 9:51:15 AM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 8e9b2432dca37f7a38575552109279486869c89e
- Parents:
- d07546b396be43cc23fe3dc01eb109d7682c6492
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kbuckets.cc
rd07546 r271730 585 585 #ifdef USE_COEF_BUCKETS 586 586 if (i<coef_start) 587 {588 587 bucket->buckets[i] = p_Mult_nn(bucket->buckets[i], n, r); 589 588 #ifdef HAVE_RINGS 589 /* Frank Seelisch on March 11, 2010: 590 This looks a bit strange: The following "if" is indented 591 like the previous line of code. But coded as it is, 592 it should actually be two spaces less indented. 593 Question: Should the following "if" also only be 594 performed when "(i<coef_start)" is true? 595 For the time being, I leave it as it is. */ 590 596 if (rField_is_Ring(r) && !(rField_is_Domain(r))) { 591 597 bucket->buckets_length[i] = pLength(bucket->buckets[i]); … … 593 599 } 594 600 #endif 595 }596 601 else 597 602 if (bucket->coef[i]!=NULL) … … 1114 1119 { 1115 1120 kBucket_Mult_n(bucket, an); 1121 #ifdef HAVE_RINGS 1116 1122 lm = p_Mult_nn(lm, an, bucket->bucket_ring); 1123 #endif 1117 1124 } 1118 1125 rn = an;
Note: See TracChangeset
for help on using the changeset viewer.