first commit
This commit is contained in:
15
perl/Examples/Chap4/rng-iterator.pl
Normal file
15
perl/Examples/Chap4/rng-iterator.pl
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
|
||||
###
|
||||
### rng-iterator.pl
|
||||
###
|
||||
|
||||
## Chapter 4 section 3.6
|
||||
|
||||
sub make_rand {
|
||||
my $seed = shift || (time & 0x7fff);
|
||||
return Iterator {
|
||||
$seed = (29*$seed+11111) & 0x7fff;
|
||||
return $seed;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user