avatar: Guide
youroul.com

0
150

What kind of numbers is used for the roulette simulator?

Numbers from the Software Pseudo Random Number Generator (P-RNG).

You can use own numbers if you doubt the P-RNG!

python documentation:

Almost all module functions depend on the basic function random(), which generates a random float uniformly in the semi-open range [0.0, 1.0). Python uses the Mersenne Twister as the core generator. It produces 53-bit precision floats and has a period of 2**19937-1. The underlying implementation in C is both fast and threadsafe. The Mersenne Twister is one of the most extensively tested random number generators in existence. However, being completely deterministic, it is not suitable for all purposes, and is completely unsuitable for cryptographic purposes.


Source: docs.python.org/2.6/library/random.html

Here is a Permanence over one Million Numbers on one track.

Reportar Mensaje
What kind of numbers is used for the roulette simulator?