You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current routine used for extracting doubles from strings has a minor roundoff error when the number of digits reaches the limits of double precision.
The text was updated successfully, but these errors were encountered:
issue #6
* Fix bugs in parsing some floats
* Process dot and decimal exponent in the same manner
* Add option in parsing test to use strtod as a reference
* Add option in parsing test to generate random numbers
About 4% of randomly generated floats still have an error on the last
bit. This is due to loss of precision. In order to improve precision
further, multi-precision integers would have to be used.
The current routine used for extracting doubles from strings has a minor roundoff error when the number of digits reaches the limits of double precision.
The text was updated successfully, but these errors were encountered: