Tagged Questions

0
votes
1answer
61 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 …
4
votes
4answers
297 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 t …
0
votes
4answers
959 views

Will repeated calls to srand() in c++ use the same seed?

If I have srand(2) declared in my main of my driver file, do I need to declare srand(2) in my code file which is being linked with my driver? Thanks. edit (from user's comment b …
0
votes
4answers
144 views

Can anyone see what is wrong with this (time related functions in C)

#include <stdio.h> #include <stdlib.h> #include <time.h> static struct tm createDate(unsigned day, unsigned mon, int year) { struct tm b = {0,0,0,day,mon- …
3
votes
4answers
268 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 i …
0
votes
3answers
2k views

srand((unsigned)(time(NULL))); (rand())/(RAND_MAX/2) - 1 C# equivalent

What is the c# equivalent of the following c++: srand((unsigned)(time(NULL))); weight=(double)(rand())/(RAND_MAX/2) - 1;