Changeset 6ad7e6 in git
- Timestamp:
- Nov 10, 2012, 4:37:11 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 780b5285f9d867d03d9da5298c36e8bedf88eaf4
- Parents:
- a2da9ea07b27576399fa96413ca380533784bd58
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/ext_fields/transext.cc
ra2da9e r6ad7e6 1239 1239 void ntNormalize (number &a, const coeffs cf) 1240 1240 { 1241 definiteGcdCancellation(a, cf, FALSE); 1241 if ((a!=NULL)&&(DEN(a)!=NULL)) 1242 { 1243 definiteGcdCancellation(a, cf, FALSE); 1244 if ((DEN(a)!=NULL) 1245 &&(!n_GreaterZero(pGetCoeff(DEN(a)),ntRing->cf))) 1246 { 1247 NUM(a)=p_Neg(NUM(a),ntRing); 1248 DEN(a)=p_Neg(DEN(a),ntRing); 1249 } 1250 } 1242 1251 ntTest(a); // !!!! 1243 1252 }
Note: See TracChangeset
for help on using the changeset viewer.