Tagged Questions

1
vote
2answers
102 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.
0
votes
1answer
77 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 …
1
vote
7answers
178 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
167 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 …
2
votes
4answers
169 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 …
4
votes
4answers
313 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 …
7
votes
2answers
159 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. …
0
votes
4answers
224 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, …
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 …
0
votes
3answers
153 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? …
0
votes
3answers
184 views

What’s wrong with my random number generator?

I'm just diving into some C++ and I decided to make a random number generator (how random the number is, it really doesn't matter). Most of the code is copied off then net but my newbie eyes cannot …
1
vote
4answers
123 views

Consistent pseudo-random numbers across platforms

Hello, I am looking for a way to generate pseudo random number sequences that will yield identical sequence results for a given seed across any platform. I am assuming that rand()/srand() is not …
2
votes
4answers
440 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
5answers
116 views

c++ not randomizing

i'm not sure why i cant get diff values for my variables here, help! int main() { srand(time(NULL)); srand48(time(NULL)); Packet* firstPacket = new Packet(); …
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 …

1 2 next
15 30 50 per page