Difference between revisions of "Mersenne twister"

From RogueBasin
Jump to navigation Jump to search
m (copy editing)
(Adding a link to a C++ port of MT, since it's much faster than the C version :))
Line 8: Line 8:


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]
C++ optimized port of MT: [http://www.bedaux.net/mtrand/ C++ Mersenne Twister]




[[Category:Articles]]
[[Category:Articles]]

Revision as of 15:51, 2 May 2010

Mersenne Twister

The Mersenne Twister is a fast, efficient pseudo-random number generator with a very long period. It is not secure enough for cryptographic uses, but it is more than adequate for computer games. Due to its speedy and effective generation of pseudo-random numbers, a few languages (for example FreePascal) 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

C++ optimized port of MT: C++ Mersenne Twister