Tagged Questions
107
votes
37answers
6k views
Need for predictable random generator
I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The ...
24
votes
25answers
5k 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 ...
21
votes
24answers
21k views
Create Random Number Sequence with No Repeats
Duplicate:
Unique random numbers in O(1)?
I want an pseudo random number generator that can generate numbers with no repeats in a random order.
For example:
random(10)
might return
5, 9, 1, ...
21
votes
7answers
27k views
C++ random float
How do I generate random floats in C++?
I thought I could take the integer rand and divide it by something, would that be adequate enough?
17
votes
7answers
679 views
Fast uniformly distributed random points on the surface of a unit hemisphere
I am trying to generate uniform random points on the surface of a unit sphere for a Monte Carlo ray tracing program. When I say uniform I mean the points are uniformly distributed with respect to ...
17
votes
6answers
11k views
Generate random numbers following a normal distribution in C/C++
Does anyone know how I could easily generate random numbers following a normal distribution in C/C++ ?
http://www.mathworks.com/access/helpdesk/help/toolbox/stats/normrnd.html
I don't want to use ...
15
votes
5answers
15k views
How do I create a random alpha-numeric string in C++?
I'd like to create a random string, consisting of alpha-numeric characters. I want to be able to be specify the length of the string.
How do I do this in C++?
11
votes
1answer
166 views
Do all C++ STLs produce the same random numbers (for the same seed)?
do all C++ STLs produce the same random numbers (for the same seed)?
Does this hold for all platforms?
Is this specified somewhere?
Thanks!
Bjoern
9
votes
3answers
223 views
Is random_shuffle threadsafe? and using rand_r if it is not
Is std::random_shuffle threadsafe? I presume not since the regular rand() is not threadsafe. If that is the case, how would I use rand_r with random_shuffle so that I can give each thread a unique ...
9
votes
3answers
385 views
Fast weighted random selection from very large set of values
I'm currently working on a problem that requires the random selection of an element from a set. Each of the elements has a weight(selection probability) associated with it.
My problem is that for ...
9
votes
4answers
3k views
How do you generate random strings in C++?
I am looking for methods to generate random strings in C++.Here is my code:
string randomStrGen(int length) {
static string charset = ...
9
votes
9answers
8k views
Recommended way to initialize srand?
I need a 'good' way to initialize the pseudo-random number generator in C++. I've found an article that states:
In order to generate random-like
numbers, srand is usually initialized
to some ...
9
votes
7answers
4k views
Random element in a map
what is a good way to select a random element from a map? C++. It is my understanding that maps don't have random access iterators. The key is a long long and the map is sparsely populated.
8
votes
5answers
385 views
Random numbers in C++0x
The new C++11 Standard has a whole chapter dedicated to random number generators. But how do I perform the simplest, most common task that used to be coded like this, but without resorting to the ...
8
votes
4answers
364 views
Reinventing The Wheel: Random Number Generator
So I'm new to C++ and am trying to learn some things. As such I am trying to make a Random Number Generator (RNG or PRNG if you will). I have basic knowledge of RNGs, like you have to start with a ...
8
votes
11answers
761 views
Better seeds than time(0)?
I understand that time(0) is commonly using for seeding random number generators and that it only becomes a problem when the program is being run more than once per second. I'm wondering what are some ...
8
votes
2answers
527 views
Fast generation of random set, Monte Carlo Simulation
I have a set of numbers ~100, I wish to perform MC simulation on this set, the basic idea is I fully randomize the set, do some comparison/checks on the first ~20 values, store the result and repeat.
...
7
votes
3answers
114 views
Should I keep the random distribution object instance or can I always recreate it?
I have this code:
static std::mt19937 rnd;
// ...
static uint32_t rndInt(uint32_t min, uint32_t max) {
return std::uniform_int_distribution<uint32_t>(min,max)(rnd);
}
Is that good ...
7
votes
6answers
227 views
Whats the difference between srand(1) and srand(0)
I just found out the hard way that srand(1) resets the PRNG of C(++) to the state before any call to srand (as defined in the reference).
However, the seed 0 seems to do the same, or the state before ...
7
votes
7answers
2k views
Generating random integer from a range
I need a function which would generate a random integer in given range (including border values). I don't unreasonable quality/randomness requirements, I have four requirements:
I need it to be ...
7
votes
9answers
1k views
filling an array with random number
I trying to fill an array of 20 ints with numbers from 1-20 in random sequence.
here's my code:
int lookup[20]={0};
int array[20]={0};
srand(time(NULL));
for(int i=0;i<20;++i){
bool ...
7
votes
2answers
5k views
Boost random number generator
Does anyone have a favorite boost random number generator and can you explain a little on how to implement it into code. I am trying to get the mersenne twister to work and was wondering if anyone had ...
7
votes
10answers
4k 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 ...
6
votes
3answers
154 views
generating random numbers in C++ using TR1 /dev/random (resilient to <1 second runs)
I would like to generate uniform random numbers in C++ between 0 and 1, in a way which does not use the standard rand() and srand(time(NULL)) method. The reason for this is that if I run the ...
6
votes
10answers
263 views
How to produce a random number sequence that doesn't produce more than X consecutive elements
Ok, I really don't know how to frame the question properly because I barely have any idea how to describe what I want in one sentence and I apologize.
Let me get straight to the point and you can ...
6
votes
2answers
487 views
creating a non-uniform, integer distribution using tr1 <random>
Right now I use the following code to create a uniform distribution of integers with a range. (I took out the seeding code)
int random(int min, int max)
{
static std::mt19937 gen;
...
6
votes
4answers
275 views
Good practice for choosing an algorithm randomly with c++
Setting:
A pseudo-random pattern has to be generated. There are several ways / or algorithms availible to create different content. All algorithms will generate a list of chars (but could be anything ...
6
votes
5answers
2k views
rand() generating the same number – even with srand(time(NULL)) in my main!
So, I'm trying to create a random vector (think geometry, not an expandable array), and every time I call my random vector function I get the same x value, though y and z are different.
int main () {
...
6
votes
4answers
229 views
Robust Random Number Generation in C++/C#
I'm looking for a performant, reasonably robust RNG using no special hardware. It can use mathematical methods (Mersenne Twister, etc), it can "collect entropy" from the machine, whatever. On ...
5
votes
4answers
115 views
How often should I call srand() in a C++ application?
I have a C++ application which calls rand() in various places. Do I need to initialize srand() regularly to ensure that rand() is reasonably random, or is it enough to call it once when the app ...
5
votes
7answers
254 views
Generating m distinct random numbers in the range [0..n-1]
I have two methods of generating m distinct random numbers in the range [0..n-1]
Method 1:
//C++-ish pseudocode
int result[m];
for(i = 0; i < m; ++i)
{
int r;
do
{
r = rand()%n;
...
5
votes
6answers
739 views
using rand() with multiple threads in C++
We want that several threads will run all the same function and in it generate, each, a different random number several times. We tried to do this by putting srand(time(0)) at the start of the ...
5
votes
20answers
723 views
How to ensure that randomly generated numbers are not being repеаted? [closed]
Possible Duplicates:
Unique random numbers in O(1)?
How do you efficiently generate a list of K non-repeating integers between 0 and an upper bound N
I want to generate random number in a ...
5
votes
6answers
720 views
How to randomize a sorted list?
Here's a strange question for you guys,
I have a nice sorted list that I wish to randomize. How would i go about doing that?
In my application, i have a function that returns a list of points that ...
5
votes
8answers
1k views
How to generate a good random seed to pass to srand()?
I am writing a C++ program which needs to create a temporary file for its internal usage. I would like to allow concurrent executions of the program by running multiple proccesses, so the temporary ...
5
votes
1answer
1k views
How do I use chi square distribution with C++ Boost library?
I've checked the examples in the Boost website, but they are not what I'm looking for.
To put it simple, I want to see if a number on a die is favored, using 600 rolls, so the average appearances of ...
5
votes
5answers
3k views
Weighted random numbers
I'm trying to implement a weighted random numbers. I'm currently just banging my head against the wall and cannot figure this out.
In my project (Hold'em hand-ranges, subjective all-in equity ...
5
votes
8answers
3k views
Need a fast random generator for c++
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 1 of the 3 nodes that I want ...
5
votes
4answers
3k views
Random number generator that produces a power-law distribution?
I'm writing some tests for a C++ command line Linux app. I'd like to generate a bunch of integers with a power-law/long-tail distribution. Meaning, I get a some numbers very frequently but most of ...
5
votes
14answers
7k views
Open source random number generation algorithm in C++?
I need to generate random numbers in the range 1 - 10000 continuously with out duplication.
Any recommendations?
Description: we are building a new version for our application, which maintains ...
4
votes
5answers
163 views
Will this give me proper random numbers based on these probabilities? C++
Code:
int random = (rand() % 7 + 1)
if (random == 1) { } // num 1
else if (random == 2) { } // num 2
else if (random == 3 || random == 4) { } // num 3
else if (random == 5 || random == 6) { } // num ...
4
votes
6answers
226 views
C++ super fast thread-safe rand function
void NetClass::Modulate(vector <synapse> & synapses )
{
int size = synapses.size();
int split = 200 * 0.5;
for(int w=0; w < size; w++)
if(synapses[w].active)
...
4
votes
2answers
120 views
Will the difference between RAND_MAX and UINT_MAX vary?
My homework involves making random integers between 0 and 2^30. Now, in the past we've learned that rand() only returns integers up to RAND_MAX, that this is less than UINT_MAX, and that we can use ...
4
votes
3answers
114 views
What is the theory behind this PRNG?
__forceinline static int Random()
{
int x = 214013, y = 2531011;
seed = (x * seed + y);
return ((seed >> 16) & 0x7FFF) - 0x3FFF;
}
The code above returns PRNG with decent ...
4
votes
4answers
119 views
Same random numbers every time I run the program
My random numbers that output, output in the same sequence every time I run my game. Why is this happening?
I have
#include <cstdlib>
and am using this to generate the random numbers
...
4
votes
5answers
228 views
Equivalent of this Python random number generator in C++?
Just switch from Python to C++ and I begin to re-write my Python tools in C++ for better understanding, but can't solve this one...
This function will generate range of random numbers, for example ...
4
votes
3answers
362 views
Gamma distributed random variables in C++
What is the easiest way to get a gamma distributed random variable in C++? Boost seems to have this functionality, but it is not clear for me how to use it.
4
votes
3answers
253 views
What is the standard way to get the state of a C++0x random number generator?
I am trying to learn the new C++0x approach to random number generators (26.5), and implement at C++0x-compliant random number engine (26.5.1.4).
The standard goes into detail on the required ...
4
votes
6answers
563 views
Generating random floating-point values based on random bit stream
Given a random source (a generator of random bit stream), how do I generate a uniformly distributed random floating-point value in a given range?
Assume that my random source looks something like:
...
4
votes
1answer
317 views
Fastest way for a random unique subset of C++ tr1 unordered_set
This question is related to
this one, and more precisely to this answer to it.
Here goes: I have a C++/TR1 unordered_set U of unsigned ints (rough cardinality 100-50000, rough value range 0 to 10^6).
...