Tagged Questions

1
vote
3answers
120 views

Lagged Fibonacci Rng For Project Euler #149

Hey guys, this is very likely a total brain fart on my part but I was hoping someone could have a look at the following statement which describes how to set up the lagged fibonacci rng: First, …
1
vote
2answers
104 views

how to bias a random number generator

i am using the random number generator provided with stl c++. how do we bias it so that it produces smaller random numbers with a greater probability than larger random numbers.
68
votes
37answers
3k 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 …
0
votes
1answer
84 views

Correct use of s/rand or Boost::random

I know this kind of question has been asked a few times, but alot of them answers boil down to RTFM, but I'm hoping if I can ask the right question... I can get a quasi-definitive answer for everyone …
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 …
1
vote
7answers
186 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 1 of the 3 nodes …
0
votes
2answers
206 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<unsigned …
0
votes
5answers
249 views

C++: TR1 vs GSL vs Boost for statistical distributions?

Hi, in my previous post I was asking how to generate numbers following a normal distribution. Since I have also other distributions to generate and I saw 3 libraries might provide them (GSL, …
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 …
2
votes
4answers
170 views

Random integers c++

I'm trying to produce random integers (uniformly distributed). I found this snippet on an other forum but it works in a very weird way.. srand(time(NULL)); AB=rand() % 10+1; Using this method …
10
votes
23answers
3k 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, …
4
votes
7answers
1k views

Fast pseudo random number generator for procedural content

I am looking for a pseudo random number generator which would be specialized to work fast when it is given a seed before generating each number. Most generators I have seen so far assume you set seed …
7
votes
2answers
162 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. …
2
votes
4answers
464 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 …
0
votes
3answers
166 views

Relationship between MSVC++ rand() and C# System.Random

How can I make it so the same sequence of random numbers come out of an MSVC++ program and a C# .NET program? Is it possible? Is there any relationship between MSVC++ rand() and System.Random? …

1 2 next
15 30 50 per page