Tagged Questions
The mersenne-twister tag has no wiki summary.
7
votes
8answers
767 views
How reliable is the Random function in Delphi
I am writing a program which write statistical tests in Delphi (must be Delphi) and I've heard that the Random functionality is somewhat odd. You have to call randomize to randomize the seed of the ...
5
votes
1answer
83 views
How to properly seed a mersenne twister RNG?
This is actually not as simple as I first thought.
In the absence of a hardware RNG, what is the best way to seed a Mersenne Twister?
Or should I say, what is an acceptable way to seed a a Mersenne ...
4
votes
1answer
430 views
Distributed sequential random number generation in Ruby 1.9.2
The Random class in Ruby 1.9.2 is guaranteed to generate random numbers in the same order, given a particular seed and range. For instance:
r = Random.new(23)
r.rand(100) # 83
r.rand(100) ...
3
votes
3answers
183 views
Pseudo-random number generator for cluster environment
How can I generate independent pseudo-random numbers on a cluster, for Monte Carlo simulation for example? I can have many compute nodes (e.g. 100), and I need to generate millions of numbers on each ...
2
votes
0answers
66 views
Is Mersenne Twister a good binary RNG?
I'm trying to find an RNG to generate a stream of pseudorandom bits. I have found that Mersenne Twister (MT19937) is a widely used RNG that generates good 32-bit unsigned integers and that ...
2
votes
2answers
267 views
Thread safe mersenne twister
Looking for a thread safe random generator I found a mersenne twister generator class that the author says if thread safe:
http://www.umiacs.umd.edu/~yangcj/mtrnd.html
But after studying the code I ...
1
vote
1answer
212 views
C++ RNG (Mersenne Twister) needs seed
I have written a RNG class which holds different algorithms, however it does not work as expected. Besides the fact that i want use normal (rather than uniform) distribution my code always returns ...
1
vote
1answer
108 views
Mersenne Twister on Little Endian
Does the pseudocode provided in Wikipedia's article on Mersenne Twister work with Little Endian ("atomic element size" 8 or 16 bit), or any other byte-orderings?
Does it work on 32-bit only systems? ...
1
vote
1answer
92 views
Reset Mersenne Twister
I assumed the answer to this is simple but at the moment it seems to be completely alluding me.
I'm using Mersenne Twister (implementation here http://www.bedaux.net/mtrand/) for generating random ...
1
vote
3answers
247 views
mersenne twister - is there a way to jump to a particular state?
I am a little unsure about the right forum for this question. It is between theoretical comp. sci./math and programming.
I use Mersenne-Twister to generate pseudo random numbers. Now, starting from ...
1
vote
2answers
244 views
Python Mersenne Twister implementation
I have Python 3.1.2 and I'm using Windows XP.
Where can I see Python's implementation of the Mersenne Twister? In the Python docs it is stated that the Mersenne Twister was written in C and the ...
1
vote
0answers
87 views
functional correctness of wiki mersenne twister psuedocode
can anyone tell me if the mersenne twister psuedocode on this page is the same as the code here? if they are not the same, which one is correct?
1
vote
5answers
786 views
Mersenne Twister: seeding & visualization
I am using a C# implementation of Mersenne Twister I downloaded from CenterSpace. I have two problems with it:
No matter how I seed the algorithm it does not pass DieHard tests, and by that I mean I ...
0
votes
2answers
170 views
Why is this class not Serializable?
I was using the Mersenne-Twister implementation at http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/JAVA/MTRandom.java as a drop-in replacement for the default java.util.Random class. However, ...