Changeset cfbee28 in git
- Timestamp:
- Mar 9, 2010, 11:37:42 AM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 800a623d3758f64010d3d152bc09740d6d3678c0
- Parents:
- 83c63c1d2c4890e4d23dd2d9af4533b6b138359b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kbuckets.cc
r83c63c rcfbee28 585 585 #ifdef USE_COEF_BUCKETS 586 586 if (i<coef_start) 587 { 587 588 bucket->buckets[i] = p_Mult_nn(bucket->buckets[i], n, r); 588 589 #ifdef HAVE_RINGS … … 592 593 } 593 594 #endif 595 } 594 596 else 595 597 if (bucket->coef[i]!=NULL) … … 1105 1107 { 1106 1108 number an = pGetCoeff(p1), bn = pGetCoeff(lm); 1109 //StringSetS("##### an = "); nWrite(an); PrintS(StringAppend("\n")); 1110 //StringSetS("##### bn = "); nWrite(bn); PrintS(StringAppend("\n")); 1107 1111 int ct = ksCheckCoeff(&an, &bn); 1108 1112 p_SetCoeff(lm, bn, bucket->bucket_ring); 1109 if ((ct == 0) || (ct == 2)) kBucket_Mult_n(bucket, an); 1113 if ((ct == 0) || (ct == 2)) 1114 { 1115 kBucket_Mult_n(bucket, an); 1116 lm = p_Mult_nn(lm, an, bucket->bucket_ring); 1117 } 1110 1118 rn = an; 1111 1119 } … … 1146 1154 } 1147 1155 #endif 1148 1149 1156 kBucket_Minus_m_Mult_p(bucket, lm, a1, &l1, spNoether); 1150 1157
Note: See TracChangeset
for help on using the changeset viewer.