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
sinpi(::Rational{BigInt})
#41744 broke sinpi(::Rational{BigInt}), which worked in v1.6, v1.8 and v1.9-beta:
Before:
julia> sinpi(big(1//1)) 0.0
After #41744:
julia> sinpi(big(1//1)) ERROR: MethodError: no method matching sinpi_kernel(::BigFloat) [...]
The text was updated successfully, but these errors were encountered:
Other Rational types have problems with overflow:
Rational
julia> sinpi(typemax(Int64)//1) 0.0
After:
julia> sinpi(typemin(Int64)//1) ERROR: OverflowError: 2 * -9223372036854775808 overflowed for type Int64 [...]
Sorry, something went wrong.
Remove weird Rational dispatch and add pi functions to list (#50850)
b763728
Should fix #48735
19fdcce
Should fix #48735 (cherry picked from commit b763728)
a7f5a35
oscardssmith
Successfully merging a pull request may close this issue.
#41744 broke
sinpi(::Rational{BigInt})
, which worked in v1.6, v1.8 and v1.9-beta:Before:
After #41744:
The text was updated successfully, but these errors were encountered: