Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^5: How do I make a random shuffle deterministic?

by Anonymous Monk
on Dec 06, 2012 at 15:07 UTC ( [id://1007599]=note: print w/replies, xml ) Need Help??


in reply to Re^4: How do I make a random shuffle deterministic?
in thread How do I make a random shuffle deterministic?

New try after some research.

use Sys::Hostname; use Digest::MD5 qw( md5 ); sub seed { my $string = shift; my $seed = 0; my $digest = md5( $string ); for ( split //, $digest ) { $seed = ( $seed * 256 + ord ) % 1e12; } srand $seed; } # main matter my $hostname = hostname; seed ( $hostname );

Replies are listed 'Best First'.
Re^6: How do I make a random shuffle deterministic?
by LanX (Saint) on Dec 06, 2012 at 15:31 UTC
    Looks fine for me!

    The modules are core and your producing a maximal seed.

    Still think it's exaggerated for your problem...

    ... but it's a good generic solution for similar tasks! =)

    My only concern is readability, better use something like ord $char with an explicit loop var my $char

    Anyway you are still operating on the assumption that hostnames are always different, since I don't know your project this might be ok or not.

    Generating a random seed at installation time would prevent this "problem".

    Cheers Rolf

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1007599]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-20 10:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found