Changeset a23b21 in git
- Timestamp:
- Jul 6, 2010, 2:36:25 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- ec96d7e522948aaeac11f39a069164959fa6871a
- Parents:
- 1b816a3ddb5c34f33ea139cdcf225e3a6e8a49f3
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2010-07-06 14:36:25+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:22+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
polys/polys.cc
r1b816a3 ra23b21 191 191 } 192 192 #ifdef HAVE_RINGS 193 if (n IsUnit(inv))194 { 195 inv = n Invers(inv);196 p Mult_nn(result,inv);197 n Delete(&inv);193 if (n_IsUnit(inv,r->cf)) 194 { 195 inv = n_Invers(inv,r->cf); 196 p_Mult_nn(result,inv,r); 197 n_Delete(&inv, r->cf); 198 198 } 199 199 else 200 200 { 201 p Div_nn(result,inv);201 p_Div_nn(result,inv,r); 202 202 } 203 203 #else 204 p Mult_nn(result,inv);205 n Delete(&inv);206 #endif 207 p Delete(&b);204 p_Mult_nn(result,inv,r); 205 n_Delete(&inv, r->cf); 206 #endif 207 p_Delete(&b, r); 208 208 return result; 209 209 }
Note: See TracChangeset
for help on using the changeset viewer.