set_random
set_random — starts random at a different initial
number.
set_random (integer_seed)
integer_seedAny integer number.
This function seeds the random number generator to start the
pseudo-random sequence at a different number. The same
integer_seed will always produce the same
pseudo-random sequence. set_random is commonly called
with an unpredictable integer_seed, such as the
result of clock.
Gamma>set_random(95);tGamma>random();0.26711518364027142525Gamma>random();0.8748339582234621048Gamma>random();0.30958001874387264252Gamma>set_random(clock());tGamma>random();0.41952831624075770378Gamma>random();0.99278739839792251587Gamma>random();0.42997436970472335815Gamma>