-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect conversion for very small numbers #94
Comments
Note that: julia> nextfloat(0.0)
5.0e-324 |
To fix this we would have to do all parsing via BigFloat, which may be very slow. |
There is also an error here! |
This now gives
|
We now have
We should probably use the new |
We have
This is correct. |
this is fixed in #522 julia> @interval "1e-400"
[0, 4.94066e-324]
julia> I"1e-400"
[0, 4.94066e-324] |
@lbenet how should we deal with issues like these? Should we close them when the PR is merged to 1.0-dev or when 1.0-dev is merged to master? |
We should probably keep this open to remember to port back that back from 1.0-dev... or if we don't, close them once 1.0-dev becomes 1.0 and is merged to master 😄 |
Fixed in #567 |
The text was updated successfully, but these errors were encountered: