Difference between revisions of "Mersenne twister"

From RogueBasin
Jump to navigation Jump to search
m
Line 1: Line 1:
== Mersenne Twister ==
The Mersenne Twister is a fast, efficient pseudorandom number generator with a very long period.  It is not secure enough for cryptographical uses, but is more than adequate for computer games.  Due to it's speed and effective generation of psuedorandom numbers, a few languages have already begun using the Mersenne Twister as its default algorithm for its own RNG.
The Mersenne Twister is a fast, efficient pseudorandom number generator with a very long period.  It is not secure enough for cryptographical uses, but is more than adequate for computer games.  Due to it's speed and effective generation of psuedorandom numbers, a few languages have already begun using the Mersenne Twister as its default algorithm for its own RNG.




== Related Links ==


The original C source for the MT: [http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/CODES/mt19937ar.c MT Source]
The original C source for the MT: [http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/CODES/mt19937ar.c MT Source]


The official webpage of the MT: [http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html Mersenne Twister Homepage]
The official webpage of the MT: [http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html Mersenne Twister Homepage]

Revision as of 12:33, 27 September 2005

Mersenne Twister

The Mersenne Twister is a fast, efficient pseudorandom number generator with a very long period. It is not secure enough for cryptographical uses, but is more than adequate for computer games. Due to it's speed and effective generation of psuedorandom numbers, a few languages have already begun using the Mersenne Twister as its default algorithm for its own RNG.


Related Links

The original C source for the MT: MT Source

The official webpage of the MT: Mersenne Twister Homepage