-
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
Bug in power of large numbers #491
Comments
This only seems to happen on the |
This seems to be a bug in julia> y = -1e308
-1.0e308
julia> IntervalArithmetic.power_by_squaring(y, 3, RoundUp)
-Inf |
on master julia> x = -Inf..(-1e308)
[-∞, -9.99999e+307]
julia> x^3
[-∞, -1.79769e+308] |
We should add a test for this in any case. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should not be empty.
The text was updated successfully, but these errors were encountered: