I've been asked to come up with an algorithm to do a biased weighted dice roll function, I couldn't do it from the top of my head and after searching how to do it I've stumbled upon this piece of code from O'Reilly's Perl Cookbook:
sub biased_die_roll {
my %dist = (1=>0.01,2=>0.01,3=>0.01,4=>0.01,5=>0.48,6=>0.48);
my ($key, $weight);
my $rand = rand;
while ( ($key, $weight) = each %dist ) {
return $key if ($rand -= $weight) < 0;
}
}
As I've verified, this function indeed does what it's supposed to but I can't get my head around the inner while... For each dice face value ($key), if $rand = $rand - $weight is below zero, return $key. From what I understand, it will always produce less than zero output at the return line statement.
What's going on?
Update: I was misinterpreting the weighted distribution hash, using actual weights instead of probabilities, once I realized that, it was easy to understand the algorithm.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.