Changeset 2fa632 in git
- Timestamp:
- May 20, 2008, 4:40:00 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 672e05dbbccdbb86d350ae5b44e723949901a6ba
- Parents:
- 9502424b0f889fdd4af67a0dd1bc06a2a9716a5d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gnumpfl.cc
r9502424 r2fa632 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: gnumpfl.cc,v 1. 8 2008-03-19 17:44:08Singular Exp $ */4 /* $Id: gnumpfl.cc,v 1.9 2008-05-20 14:40:00 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: computations with GMP floating-point numbers … … 285 285 return; 286 286 } 287 if ( exp == 1 ) 287 else if ( ngfIsZero(x) ) // 0^e, e>0 288 { 289 gmp_float* n = NULL; 290 *u=(number)n; 291 return; 292 } 293 else if ( exp == 1 ) 288 294 { 289 295 nNew(u);
Note: See TracChangeset
for help on using the changeset viewer.