We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
julia> Interval(prev_float(Inf), Inf) + Interval(prev_float(Inf), Inf) ERROR: ArgumentError: Must satisfy `a < Inf` and `b > -Inf` to construct Interval(a, b).
It's trying to construct Interval(Inf, Inf).
Interval(Inf, Inf)
This seems to be a bug with FastRounding, since
julia 0.6> setrounding(Interval, :slow) :slow julia 0.6> Interval(prevfloat(Inf), Inf) + Interval(prevfloat(Inf), Inf) [1.79769e+308, ∞]
The text was updated successfully, but these errors were encountered:
This seems to have been fixed by JeffreySarnoff/FastRounding.jl#12:
using FastRounding: prev_float julia> Interval(prev_float(Inf), Inf) + Interval(prev_float(Inf), Inf) [1.79769e+308, ∞]
Sorry, something went wrong.
No branches or pull requests
It's trying to construct
Interval(Inf, Inf)
.This seems to be a bug with FastRounding, since
The text was updated successfully, but these errors were encountered: