Skip to content
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

fix shuffle! on empty arrays #28727

Merged
merged 1 commit into from
Aug 19, 2018
Merged

fix shuffle! on empty arrays #28727

merged 1 commit into from
Aug 19, 2018

Conversation

rfourquet
Copy link
Member

shuffle([]) doesn't work anymore since nextpow2(n) has
been replaced by nextpow(2, n), where n == 0.

shuffle([]) doesn't work anymore since nextpow2(n) has
been replaced by nextpow(2, n), where n == 0.
@rfourquet rfourquet added randomness Random number generation and the Random stdlib bugfix This change fixes an existing bug labels Aug 17, 2018
@KristofferC KristofferC mentioned this pull request Aug 19, 2018

@testset "shuffle[!]" begin
a = []
@test shuffle(a) == a # issue #28727
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the future, putting the issue names in the testset name might be a good idea because you can then see from the test failure the relevant issue.

@KristofferC KristofferC merged commit 728d31d into master Aug 19, 2018
@martinholters martinholters deleted the rf/emptyshuffle branch August 19, 2018 19:20
KristofferC pushed a commit that referenced this pull request Aug 19, 2018
shuffle([]) doesn't work anymore since nextpow2(n) has
been replaced by nextpow(2, n), where n == 0.

(cherry picked from commit 728d31d)
staticfloat pushed a commit that referenced this pull request Aug 24, 2018
shuffle([]) doesn't work anymore since nextpow2(n) has
been replaced by nextpow(2, n), where n == 0.
KristofferC pushed a commit that referenced this pull request Sep 8, 2018
shuffle([]) doesn't work anymore since nextpow2(n) has
been replaced by nextpow(2, n), where n == 0.

(cherry picked from commit 728d31d)
KristofferC pushed a commit that referenced this pull request Sep 8, 2018
shuffle([]) doesn't work anymore since nextpow2(n) has
been replaced by nextpow(2, n), where n == 0.

(cherry picked from commit 728d31d)
KristofferC pushed a commit that referenced this pull request Feb 11, 2019
shuffle([]) doesn't work anymore since nextpow2(n) has
been replaced by nextpow(2, n), where n == 0.

(cherry picked from commit 728d31d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugfix This change fixes an existing bug randomness Random number generation and the Random stdlib
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants