I need to generate a controlled sequence of pseudo-random numbers, given an initial parameter. For that I'm using the standard python random generator, seeded by this parameter. I'd like to make sure that I will generate the same sequence across systems (Operating system, but also Python version).

In summary: Does python ensure the reproducibility / portability of it's pseudo-random number generator across implementation and versions?

link|improve this question

Aside (just out of interest): why do you want this? – larsmans Jan 9 at 9:36
I need to generate two sequence of pseudo-random numbers on two run of a program, run that can be made by two people on two different machines. It's used for a generator of pseudo-cryptography "sheets" for a role-playing game. Don't worry, it's cryptography for a game, it has to be decipherable :) – lOranger Jan 16 at 10:30
feedback

2 Answers

up vote 4 down vote accepted

No, it doesn't. There's no such promise in the random module's documentation.

What the docs do contain is this remark:

Changed in version 2.3: MersenneTwister replaced Wichmann-Hill as the default generator

So a different RNG was used prior to Python 2.3.

So far, I've been using numpy.random.RandomState for reproducible pseudo-randomness, though it too does not make the formal promise you're after.

If you want full reproducibility, you might want to include a copy of random's source in your program, or hack together a "P²RNG" (pseudo-pseudo-RNG) from hashlib.

link|improve this answer
feedback

Not necessarily.

As described in the documentation, the random module has used the Mersenne twister to generate random numbers since version 2.3, but used Wichmann-Hill before that.

(If a seed is not provided, the method of obtaining the seed also does depend on the operating system, the Python version, and factors such as the system time).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.