Changeset 7cf3df1 in git
- Timestamp:
- Mar 25, 2014, 6:26:22 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 26db1ae149e9978a97b0ac191b53d75e9728f439
- Parents:
- 706551b8742b3f376863feefc0871cbefa877055
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-03-25 18:26:22+01:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2014-03-25 18:50:07+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/extra.cc
r706551b r7cf3df1 83 83 84 84 #include <kernel/minpoly.h> 85 86 #include <numeric/mpr_base.h> 85 87 86 88 #include "tok.h" … … 676 678 } 677 679 res->rtyp=INT_CMD; 678 res->data=(void*)getGMPFloatDigits(); 680 res->data=(void*)(long)gmp_output_digits; 681 //if (gmp_output_digits!=getGMPFloatDigits()) 682 //{ Print("%d, %d\n",getGMPFloatDigits(),gmp_output_digits);} 679 683 return FALSE; 680 684 } -
kernel/numeric/mpr_numeric.cc
r706551b r7cf3df1 580 580 581 581 gmp_float epss(0.1); 582 mpf_pow_ui(*epss._mpfp(),*epss.mpfp(),g etGMPFloatDigits());582 mpf_pow_ui(*epss._mpfp(),*epss.mpfp(),gmp_output_digits); 583 583 584 584 for ( iter= 1; iter <= MAXIT; iter++ ) -
libpolys/coeffs/mpr_complex.cc
r706551b r7cf3df1 70 70 mpf_set_d(*gmpRel->_mpfp(),0.1); 71 71 mpf_pow_ui(*gmpRel->_mpfp(),*gmpRel->_mpfp(),digits); 72 }73 74 size_t getGMPFloatDigits()75 {76 return gmp_output_digits;77 72 } 78 73 -
libpolys/coeffs/mpr_complex.h
r706551b r7cf3df1 22 22 23 23 void setGMPFloatDigits( size_t digits, size_t rest ); 24 size_t getGMPFloatDigits();25 24 26 25 //-> class gmp_float
Note: See TracChangeset
for help on using the changeset viewer.