Tagged Questions

3
votes
4answers
229 views

Statistical mathematics issues

Hello, I'm developing a Texas Hold 'em hand-range equity evaluator, which evaluates hand-distributions with Monte Carlo -simulation. I've faced two annoying problems which behaviors I cannot give any …
0
votes
4answers
131 views

Weighted random numbers

Cheers, 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 …
1
vote
7answers
176 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
151 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 …
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 …
4
votes
11answers
357 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 …
0
votes
5answers
752 views

How to generate random variable names in C++ using macros?

I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of the first variable. …
2
votes
4answers
153 views

generating random alphabets with some alphabets having a higher frequency of occurence(vc++6.0)

basically i have a function that generates random alphabets .i have done this using the rand() function to generate numbers and them converted them to their corresponding ascii equivalents. but i want …
0
votes
6answers
422 views

How do you generate a random double uniformly distributed between 0 and 1 from C++?

How do you generate a random double uniformly distributed between 0 and 1 from C++? Of course I can think of some answers, but I'd like to know what the standard practice is, to have: Good …
4
votes
4answers
310 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
5answers
2k 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?
1
vote
3answers
168 views

Fast way to pick randomly from a set, with each entry picked only once?

I'm working on a program to solve the n queens problem (the problem of putting n chess queens on an n x n chessboard such that none of them is able to capture any other using the standard chess …
3
votes
4answers
274 views

Issues with seeding a pseudo-random number generator more than once?

I've seen quite a few recommendations for not seeding pseudo-random number generators more than once per execution, but never accompanied by a thorough explanation. Of course, it is easy to see why …
2
votes
9answers
664 views

What is the most random function in C++?

I've used #include<stdlib> #include<time> using namespace std; srand((unsigned)time(0)); int n=(rand()>>8)%4; but what other random functions are there, or what other function …
1
vote
6answers
384 views

How can I get rid of the warning with rand()? (C++)

Whenever I use the rand function in C++: #include<iostream> #include<time.h> #include<stdlib.h> using namespace std; int main(){ srand(time(0)); int n=(rand()%6)+1; cout<<"The …

1 2 next
15 30 50 per page