The Mersenne Twister is a pseudo-random number generator (PRNG) suitable for Monte-Carlo simulations. It has a long period (2^19937-1) and yet takes very little memory space.
2
votes
2answers
27 views
How do I save the state of std::mersenne_twister_engine to restore it later?
I would like to save the state of a std::mersenne_twister_engine so that I can restore it back exactly at a later time. I know I can save the original seed and call discard to roll the engine forward ...
11
votes
3answers
369 views
Mersenne twister warm up vs. reproducibility
In my current C++11 project I need to perform M simulations. For each simulation m = 1, ..., M, I randomly generate a data set by using a std::mt19937 object, constructed as follows:
std::mt19937 ...
0
votes
1answer
52 views
Why I get different values from JS and PHP Mersenne Twister implementations?
1)
In PHP when I use native php MT implementation
mt_srand(1);
var_dump(mt_rand());
var_dump(mt_rand());
var_dump(mt_rand());
I get values
1244335972
15217923
1546885062
2) In this Mersenne ...
0
votes
3answers
85 views
Duplicate values generated by mt19937
I am working with C++11's random library, and I have a small program that generates a coordinate pair x, y on a circle with unit radius. Here is the simple multithreaded program
#include ...
1
vote
1answer
75 views
Mathematics behind default_random_engine and normal_distribution in C++
Can anyone lead me to somewhere that actually talks about the mathematics that underpin these two normal_distribution and default_random_engine. From what i understand uses a Mersenne twister? If so ...
6
votes
2answers
354 views
Does std::mt19937 require warmup?
I've read that many pseudo-random number generators require many samples in ordered to be "warmed up". Is that the case when using std::random_device to seed std::mt19937, or can we expect that it's ...
12
votes
7answers
448 views
Random numbers for multiple threads
Problem
I intend to write a C++11 application for Linux which does some numerical simulation (not cryptography) based on approximately one million pseudorandom 32bit numbers. To speed things up, I'd ...
2
votes
1answer
255 views
Comparing the Mersenne Twister in Java and matlab
I'm comparing the mersenne twister in Java and matlab. I'm using the same seed in both.
My problem is that when i print out ten numbers from each number generator (Mersenne Twister running in Java and ...
1
vote
1answer
93 views
Avoiding Exact Repeats for Mersenne Twister in Python
As many people know, Python uses the Mersenne Twister (MT) algorithm to handle its random numbers. However, despite having a very long period (~2^19937), it is also well-known that you can't reach ...
0
votes
0answers
53 views
What is the best way to produce a random 1 in X chance
I want to produce a high quality psuedorandom chance of something happening 1 time in X (i.e. 1 in 100, 1 in 10000, etc.), I'm currently getting a random number from a Mersenne twister and doing this ...
0
votes
2answers
235 views
Mersenne Twister random algorithm how can i seed init_genrand, random numbers are always the same C#
I'm using A C-program for MT19937, with initialization improved 2002/1/26.Coded by Takuji Nishimura and Makoto Matsumoto. taken from Codeproject link
when after copying the source files and ran the ...
-1
votes
2answers
137 views
Implementation of a Stream cipher in c
I want to implement the following function:
I am using the Mersenne-Twister-Algorithm (from Wikipedia) as my pseudorandom number generator.
It is a stream cipher
The pseudocode is: encrypted text ...
0
votes
0answers
99 views
Need a C# implementation of WELL512 RNG [closed]
Can anyone point me to a C# implementation of the WELL512 RNG? I understand it is faster than the Mersenne Twister version but any inputs are welcome on this opinion. I have seen this thread Getting a ...
1
vote
1answer
54 views
Different outputs for same seed in MT Implementation in PHP vs Javascript
I am trying to implement Mersenne Twister algorithm in PHP. I have taken the Javascript implementation from http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/JAVASCRIPT/java-script.html
I ...
0
votes
3answers
149 views
recasting a unsigned char array to an unsigned long array
Ok, I'm using a raw SHA1 hash to seed a Mersenne Twister pseudo-random number generator
the generator gives me the option to seed either with an unsigned long or a array of unsigned longs
the SHA1 ...
0
votes
1answer
118 views
MTRand produces an error on compilation
I am using MTRand (the Mersenne Twister random number generator from http://www.bedaux.net/mtrand/) inside a class that I have defined. And when I try to compile I get an unexpected error that I can't ...
3
votes
1answer
671 views
How is PHP's mt_rand seeded?
I know PHP's mt_rand() should not be used for security purposes as its results are not cryptographically strong. Yet a lot of PHP code does just that, or uses it as a fallback if better sources of ...
0
votes
2answers
67 views
using dSMFT for random float (0,1)
This project is in Obj-C for iphone. I'm using the double float version of sfmt available here: http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/#dSFMT
After seeding dsmft with the current time, ...
0
votes
1answer
360 views
Mersenne Twister seed has no effect
So I've got a custom randomizer class that uses a Mersenne Twister (the code I use is adapted from this site). All seemed to be working well, until I started testing different seeds (I normally use ...
1
vote
1answer
575 views
C++ Mersenne Twister and Random numbers lib
I am migrating a large scientific simulation software to C++. In Java I used Cern Colt library and it included a complete list of random distributions.
What C++ library is normally used when ...
1
vote
1answer
235 views
What algorithm does Math.random use?
Since I've been studying Computer Science, whenever random numbers come up, it's always Mersenne Twister. There's never even a question, no alternative. Just, use Mersenne Twister.
So what does ...
1
vote
0answers
187 views
Mersenne Twister on Multiple GPUs
I have ported the Mersenne Twister SDK to multiple GPUs, and I notice a huge performance difference w.r.t CPUs. I find it difficult to test the quality of numbers produced, so I use something like the ...
2
votes
2answers
154 views
Does array_rand use the Mersenne Twister algorithm?
In PHP, we have the choice of mt_rand() and rand() where mt_rand() uses the Mersenne Twister algorithm and rand() uses the libc random generator.
I would like to choose a random item out of an array ...
3
votes
2answers
200 views
Testing quality of PRNGs
I am playing around with PRNGs (like Mersenne Twister and rand() function of stdlib) and I would want a good test that would help me ascertain the quality of random data produced by the PRNGs.
I have ...
0
votes
2answers
133 views
Need help converting C Mersenne twister implementation to be useful to me
I am using this implementation of the Mersenne twister for a diamond-square terrain generator I am writing. The point of using a separate implementation rather than the built in rand() is that I want ...
3
votes
1answer
179 views
Local variable in one function changing results in an unrelated function, C++
Just to forewarn folks, I'm a physicist writing a simulation which is probably toy code from a professional programmer's perspective, so my coding knowledge isn't great. Anyway, paraphrasing 700 ...
2
votes
1answer
452 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 ...
5
votes
1answer
1k 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 ...
1
vote
1answer
826 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 ...
0
votes
3answers
156 views
Properly seeding a RNG for a card game
I'm working on a card game and I need the shuffle algorithm to do a very good job and to be different every time the game runs and to not have predictable card sequences.
I'm using the Mersenne ...
1
vote
1answer
166 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? ...
4
votes
4answers
646 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 ...
1
vote
1answer
177 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 ...
2
votes
3answers
590 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 ...
11
votes
9answers
2k 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
558 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) ...
2
votes
2answers
762 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
2answers
483 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
114 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?
0
votes
2answers
219 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, ...
1
vote
5answers
1k 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 ...
