-
Notifications
You must be signed in to change notification settings - Fork 27
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
Radix sort is broken for OffsetArrays with negative offset #56
Comments
This was referenced Jun 6, 2022
Good catch. We should call |
@LilithHafnerBot bisect() import Pkg
Pkg.add("OffsetArrays")
using SortingAlgorithms, OffsetArrays
sort!(OffsetArray(rand(1000), -500); alg=RadixSort) |
❗ Internal ErrorCheck the public logs for more information. |
@LilithHafnerBot bisect() import Pkg
Pkg.add("OffsetArrays")
using SortingAlgorithms, OffsetArrays
sort!(OffsetArray(rand(1000), -500); alg=RadixSort) |
✅ Bisect succeeded! The first new commit is 7179745
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With
julia --check-bounds=yes
, I getThe text was updated successfully, but these errors were encountered: