in reply to Re^4: How do I make a random shuffle deterministic?
in thread How do I make a random shuffle deterministic?
Thanks for the tips. It is acceptable if some hosts have the same seed. Still, lessening those occurrences is a good thing. How about this:
sub seed { my $string = shift; my $seed; my @ascii = map ord, split //, $string; my $product = pop @ascii; for ( @ascii ) { $seed += $_ }; $seed = $seed * $product; srand $seed; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: How do I make a random shuffle deterministic?
by LanX (Saint) on Dec 05, 2012 at 17:53 UTC |