Array#choice always produce the same sequence

S

Stefano Crocco

I've just stumbled upon a strange behaviour of Array#choice (using ruby 1.8.7-
p72). As far I understand, an_array.choice should be (almost) the same as
an_array[rand(an_array.size)]. Thus, the two following pieces of code should
be equivalent

a = [1, 2, 3, 4]
p 10.times.map{a.choice}.join
p 10.times.map{a[rand(a.size)].join}

However, this doesn't seem to be the case. In particular, something like:

ruby -e 'a = [1, 2, 3, 4]; p 10.times.map{a.choice}.join'

always give the same result, while
 
S

Stefano Crocco

Alle Thursday 05 February 2009, Stefano Crocco ha scritto:
I've just stumbled upon a strange behaviour of Array#choice (using ruby
1.8.7- p72). As far I understand, an_array.choice should be (almost) the
same as an_array[rand(an_array.size)]. Thus, the two following pieces of
code should be equivalent

a = [1, 2, 3, 4]
p 10.times.map{a.choice}.join
p 10.times.map{a[rand(a.size)].join}

However, this doesn't seem to be the case. In particular, something like:

ruby -e 'a = [1, 2, 3, 4]; p 10.times.map{a.choice}.join'

always give the same result, while

Sorry, hit the "Send" button too soon. Here's the full version

I've just stumbled upon a strange behaviour of Array#choice (using ruby
1.8.7- p72). As far I understand, an_array.choice should be (almost) the
same as an_array[rand(an_array.size)]. Thus, the two following pieces of
code should be equivalent

a = [1, 2, 3, 4]
p 10.times.map{a.choice}.join
p 10.times.map{a[rand(a.size)]}.join

However, this doesn't seem to be the case. In particular, something like:

ruby -e 'a = [1, 2, 3, 4]; p 10.times.map{a.choice}.join'

always give the same result, while

ruby -e 'a = [1, 2, 3, 4]; p 10.times.map{a[rand(a.size)]}.join'

gives a different result every time the command is executed (which, in my
opinion, is the correct behaviour).

It seems that to get the correct behaviour from choice, you need to call srand
before using it. Does anyone know why this is necessary with choice but not
with rand? Is it the intended behaviour or a bug?

Thanks

Stefano
 
R

ruud grosmann

Hi Stefano,

it seems to work for me:

irb(main):003:0> a = [1, 2, 3, 4]
=> [1, 2, 3, 4]
irb(main):004:0> p 10.times.map{a.choice}.join
"4414312344"
=> nil
irb(main):006:0> p 10.times.map{a[rand(a.size)]}.join
"4342411331"
=> nil
irb(main):007:0> p 10.times.map{a.choice}.join
"2333341212"
=> nil
irb(main):008:0> p 10.times.map{a.choice}.join
"1312441122"
=> nil
irb(main):009:0> p 10.times.map{a.choice}.join
"2412444223"
=> nil
Z ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]


Alle Thursday 05 February 2009, Stefano Crocco ha scritto:
I've just stumbled upon a strange behaviour of Array#choice (using ruby
1.8.7- p72). As far I understand, an_array.choice should be (almost) the
same as an_array[rand(an_array.size)]. Thus, the two following pieces of
code should be equivalent

a = [1, 2, 3, 4]
p 10.times.map{a.choice}.join
p 10.times.map{a[rand(a.size)].join}

However, this doesn't seem to be the case. In particular, something like:

ruby -e 'a = [1, 2, 3, 4]; p 10.times.map{a.choice}.join'

always give the same result, while

Sorry, hit the "Send" button too soon. Here's the full version

I've just stumbled upon a strange behaviour of Array#choice (using ruby
1.8.7- p72). As far I understand, an_array.choice should be (almost) the
same as an_array[rand(an_array.size)]. Thus, the two following pieces of
code should be equivalent

a = [1, 2, 3, 4]
p 10.times.map{a.choice}.join
p 10.times.map{a[rand(a.size)]}.join

However, this doesn't seem to be the case. In particular, something like:

ruby -e 'a = [1, 2, 3, 4]; p 10.times.map{a.choice}.join'

always give the same result, while

ruby -e 'a = [1, 2, 3, 4]; p 10.times.map{a[rand(a.size)]}.join'

gives a different result every time the command is executed (which, in my
opinion, is the correct behaviour).

It seems that to get the correct behaviour from choice, you need to call
srand
before using it. Does anyone know why this is necessary with choice but not
with rand? Is it the intended behaviour or a bug?

Thanks

Stefano
 
S

Stefano Crocco

Alle Thursday 05 February 2009, ruud grosmann ha scritto:
I've just stumbled upon a strange behaviour of Array#choice (using ruby
1.8.7- p72). As far I understand, an_array.choice should be (almost) the
same as an_array[rand(an_array.size)]. Thus, the two following pieces of
code should be equivalent

a =3D [1, 2, 3, 4]
p 10.times.map{a.choice}.join
p 10.times.map{a[rand(a.size)]}.join

However, this doesn't seem to be the case. In particular, something lik= e:

ruby -e 'a =3D [1, 2, 3, 4]; p 10.times.map{a.choice}.join'

always give the same result, while

ruby -e 'a =3D [1, 2, 3, 4]; p 10.times.map{a[rand(a.size)]}.join'

gives a different result every time the command is executed (which, in = my
opinion, is the correct behaviour).

It seems that to get the correct behaviour from choice, you need to call
srand
before using it. Does anyone know why this is necessary with choice but
not with rand? Is it the intended behaviour or a bug?

Thanks

Stefano
Hi Stefano,

it seems to work for me:

irb(main):003:0> a =3D [1, 2, 3, 4]
=3D> [1, 2, 3, 4]
irb(main):004:0> p 10.times.map{a.choice}.join
"4414312344"
=3D> nil
irb(main):006:0> p 10.times.map{a[rand(a.size)]}.join
"4342411331"
=3D> nil
irb(main):007:0> =C2=A0p 10.times.map{a.choice}.join
"2333341212"
=3D> nil
irb(main):008:0> p 10.times.map{a.choice}.join
"1312441122"
=3D> nil
irb(main):009:0> =C2=A0p 10.times.map{a.choice}.join
"2412444223"
=3D> nil
Z ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]

Maybe I wasn't clear in explaining the issue. Within a single irb session (=
or=20
ruby invocation in general) I, too, get different results at each invocatio=
n.=20
The problem is that if I run the script twice, I get the same results for e=
ach=20
call to choice (that is, the first call to choice gives the same result at=
=20
each ruby invocation; the second call always gives the same result, which c=
an=20
be different from the first, and so on). A simpler example:

=46ile: test.rb

p [1,2,3,4].choice

ruby test.rb
=3D> 4
ruby test.rb
=3D> 4
ruby test.rb
=3D> 4

And so on. If at the beginning of the script I add a call to Kernel#srand=20
(without arguments), I get the correct behaviour, that is a different numbe=
r=20
every time the script is run.

Stefano
 
R

Rados³aw Bu³at

p [1,2,3,4].choice

ruby test.rb
=3D> 4
ruby test.rb
=3D> 4
ruby test.rb
=3D> 4

And so on. If at the beginning of the script I add a call to Kernel#srand
(without arguments), I get the correct behaviour, that is a different num= ber
every time the script is run.


It looks like it was fixed in ruby1.9 (notice that #choice has been
renamed to #sample):

ruby1.9.1 -e "p [1,2,3,4].sample"
4
ruby1.9.1 -e "p [1,2,3,4].sample"
1
ruby1.9.1 -e "p [1,2,3,4].sample"
2
ruby1.9.1 -e "p [1,2,3,4].sample"
3
ruby1.9.1 -e "p [1,2,3,4].sample"
1
ruby1.9.1 -e "p [1,2,3,4].sample"

File a bug or ask in ruby-core if it's desired behavior.

--=20
Pozdrawiam

Rados=B3aw Bu=B3at
http://radarek.jogger.pl - m=F3j blog
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top