in reply to Re: Predictable random sequence
in thread Predictable random sequence

Thanks. That's sad. So I still searching for another approach then.

Replies are listed 'Best First'.
Re^3: Predictable random sequence
by Corion (Patriarch) on Sep 17, 2013 at 13:48 UTC

    Depending on your needs, you might get away by not using Perls random number generator and instead using Math::Random::MT - this would give you more randomness on Windows too, and maybe even predictability across more parameters.

    Personally, I would aim for centralizing the generation of such number sequences and passing either the generator or the number(s) around as parameters. That way, you can better control what number gets used where.