-
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
Subtle case of type instability in convert
#291
Comments
Oops... |
The following gives the correct julia> R(Inf)
[∞, ∞]₂₅₆
julia> typeof(ans)
Interval{BigFloat} |
That is a bug that I think is reported in an issue: |
I guess that's because we removed error checking from the constructor... Maybe that was a bad idea and we should put it back in? We need to benchmark it though. |
I agree, I think we should also have a set of benchmarks to note if such changes help or not, exploiting |
FWIW, this is why the tests don't pass on v1.2+ |
Fixed by #315 |
Thanks for fixing it! |
A subtle case of type instability:
The text was updated successfully, but these errors were encountered: