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
#86 was closed in which was mentioned that elementary operations involving Inf such as
Inf
>julia Double64(Inf)*2 Inf
are fixed. However,
>julia Double64(2)*Inf NaN
still has some issues.
The text was updated successfully, but these errors were encountered:
And in the same line
julia> norm(rand(Double64,4,4),Double64(Inf)) NaN julia> norm(rand(Double64,4,4),Inf) NaN
Sorry, something went wrong.
ok -- looking at this
Thank you for this note. The first part is fixed in master, pending merge.
Both parts are fixed in master, pending merge. Please let me know if you encounter other issues.
No branches or pull requests
#86 was closed in which was mentioned that elementary operations involving
Inf
such asare fixed. However,
still has some issues.
The text was updated successfully, but these errors were encountered: