# # This software is Copyright 2005 by Elsevier Inc. You may use it # under the terms of the license at http://perl.plover.com/hop/LICENSE.txt . # ### ### 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; } }