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 random numbers, but …
7
votes
11answers
348 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 result, say 0 if the …
7
votes
5answers
230 views
What is the proper method of constraining a pseduo-random number to a smaller range?
What is the best way to constrain the values of a PRNG to a smaller range? If you use modulus and the old max number is not evenly divisible by the new max number you bias toward the 0 through …
7
votes
11answers
589 views
Pseudo-random number generator
What is the best way to create the best pseudo-random number generator? (any language works)
6
votes
11answers
567 views
True (not pseudo) random number generators. What’s out there?
I am looking for affordable solutions that generate true random numbers.
I have found LavaRnd, which is a cryptographically sound random number generator. Does anybody has experience in this field …
5
votes
3answers
265 views
Efficient algorithm to randomly select items with frequency
Given an array of n word-frequency pairs:
[ (w0, f0), (w1, f1), ..., (wn-1, fn-1) ]
where wi is a word, fi is an integer frequencey, and the sum of the frequencies ∑fi = m,
I want to use a …
5
votes
8answers
2k views
Generate random values in C#
How can I generate random Int64 and UInt64 values using the Random class in C#?
4
votes
12answers
483 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 specify the lower and …
4
votes
4answers
324 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 to srand() stored …
4
votes
6answers
314 views
Problem with rand() in C [closed]
Possible Duplicate:
why do i always get the same sequence of random numbers with rand() ?
This is my file so far:
#include <stdio.h>
int main(void) {
int y;
y = …
4
votes
11answers
341 views
When using random, which form returns an equal 50% chance?
I'm guessing that most built in random generators return something like this:
[0.0, 1.0)
so if I would like a 50% chance would I use something like this:
if random() < .5
or something like:
…
4
votes
11answers
1k views
Generate Random numbers uniformly over entire range
I need to generate random numbers with in specified interval [max,min]
Also the random numbers should be uniformly distributed over interval, not located to particular point
Currenly I am generating …
3
votes
8answers
279 views
quickest way to generate random bits
What would be the fastest way to generate a large number of (pseudo-)random bits. Each bit must be independent and be zero or one with equal probability. I could obviously do some variation on
…
3
votes
5answers
274 views
Generate User Friendly Codes
I am researching methods to generate a random human friendly code but not (easily) guessable. This will be used to give away prizes (think unique discount codes). We are to generate about 50k. Are …
3
votes
7answers
374 views
C++. Is it possible that a RNG gives different random variable in two different machines using the same seed?
Hi everybody,
I have this long and complex source code that uses a RNG with a fix seed.
This code is a simulator and the parameters of this simulator are the random values given by this RNG.
When I …
