1
vote
7answers
140 views
Need a fast random generator for c++
Hi guys.
I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least …
0
votes
2answers
57 views
boost random number library, use same random number generator for different variate generators
It seems that one can use the following code to produce random numbers from a particular Normal distribution:
float mean = 0, variance = 1;
boost::mt19937 randgen(static_cast<u …
-1
votes
2answers
88 views
PHP Random Numbers
i need to print out numbers 1-100 in a random order. the print statement should be:
echo 'h{'.$num.'}';
what is the shortest code to do this?
0
votes
2answers
116 views
Why would rand() return a negative value when min and max values are positive?
Hi,
I have a simple piece of PHP code which requires a random number to be created. However, even though the input is always positive, it sometimes returns a negative output.
Her …
4
votes
12answers
380 views
In PHP, how do I generate a big pseudo-random number?
I'm looking for a way to generate a big random number with PHP, something like:
mt_rand($lower, $upper);
The closer I've seen is gmp_random() however it doesn't allow me to spec …
2
votes
6answers
265 views
TSQL Generate 5 character length string, all digits [0-9] that doesn’t already exist in database…
What's the best way to do this?
I need to generate a 5 digit length string where all the characters are numeric. However, I need to be able to do this 'x' amount of times (user v …
7
votes
11answers
315 views
A Good and SIMPLE Measure of Randomness
What is the best algorithm to take a long sequence of integers (say 100,000 of them) and return a measurement of how random the sequence is?
The function should return a single re …
11
votes
24answers
2k views
What is a good random number generator for a game?
What is a good random number generator to use for a game in C++?
My considerations are:
Lots of random numbers are needed, so speed is good.
Players will always complain about r …
1
vote
6answers
69 views
How different do random seeds need to be?
Consider code like this (Python):
import random
for i in [1, 2, 3, 4]:
random.seed(i)
randNumbers = [random.rand() for i in range(100)] # initialize a list with 100 rando …
0
votes
9answers
314 views
Non-repeating pseudo random number stream with ‘clumping’
I'm looking for a method to generate a pseudorandom stream with a somewhat odd property - I want clumps of nearby numbers.
The tricky part is, I can only keep a limited amount o …
4
votes
4answers
284 views
Find out what a random number generator was seeded with in C++
I've got an unmanaged c++ console application in which I'm using srand() and rand(). I don't need this to solve a particular problem, but was curious: is the original seed passed t …
1
vote
4answers
65 views
How do you seed a PRNG with two seeds?
For a game that I'm making, where solar systems have an x and y coordinates, I'd like to use the coordinates to randomly generate the features for that solar system. The easiest wa …
1
vote
2answers
87 views
replace rand() with openssl_random_pseudo_bytes()
I need a replacement for PHP's rand() function that uses a cryptographically strong random number generator.
The openssl_random_pseudo_bytes() function gets you access to the str …
7
votes
11answers
543 views
Pseudo-random number generator
What is the best way to create the best pseudo-random number generator? (any language works)
1
vote
4answers
378 views
c# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulation
So far I've been using the C# Mersenne Twister found here:
http://www.centerspace.net/resources.php
I just discovered SFMT which is supposed to be twice as fast here:
http://www …
