Changeset 906062 in git
- Timestamp:
- Dec 10, 2012, 5:37:41 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'cdfcdb8287f66bc6070028082cbbc6eff10e609b')
- Children:
- 6babcbc2bccd0b96989f6f2c061f8640dfb98b4de7cccf3b8b35aa52ffffb9f6d1a54ae569d3466f
- Parents:
- 56892ef1d39dd9a7a3628073c6b656961ba9bc0d9053f02b7317fbd38584bd46c32dc61a34b8932f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/ext_fields/transext.cc
r56892e r906062 1134 1134 DEN(f), or both, due to previous arithmetics. The next call will 1135 1135 remove those nested fractions, in case there are any. */ 1136 if (nCoeff_is_Q(ntCoeffs)) handleNestedFractionsOverQ(f, cf); 1136 if (nCoeff_is_Zp(ntCoeffs) && p_IsConstant (DEN (f), ntRing)) 1137 { 1138 NUM (f) = p_Div_nn (NUM (f), p_GetCoeff (DEN(f),ntRing), ntRing); 1139 //poly newNum= singclap_pdivide (NUM(f), DEN (f), ntRing); 1140 //p_Delete(&NUM (f), ntRing); 1141 //NUM (f)= newNum; 1142 p_Delete(&DEN (f), ntRing); 1143 DEN (f) = NULL; 1144 COM (f) = 0; 1145 } else if (nCoeff_is_Q(ntCoeffs)) handleNestedFractionsOverQ(f, cf); 1137 1146 } 1138 1147 else
Note: See TracChangeset
for help on using the changeset viewer.