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 the following (C/C++) example is not a good idea:

int get_rand() {
  srand(time(NULL));
  return rand();
}

since calling get_rand several times per second produces repeated results.

But wouldn't the following example still be an acceptable solution?

MyRand.h

#ifndef MY_RAND_H
#define MY_RAND_H

class MyRand
{
  public:
    MyRand();
    int get_rand() const;
  private:
    static unsigned int seed_base;
};

#endif

MyRand.cpp

#include <ctime>
#include <cstdlib>
#include "MyRand.h"

unsigned int MyRand::seed_base = static_cast<unsigned int>(time(NULL));

MyRand::MyRand()
{
  srand(seed_base++);
}

int MyRand::get_rand() const
{
  return rand();
}

main.cpp

#include <iostream>
#include "MyRand.h"

int main(int argc, char *argv[]) 
{
  for (int i = 0; i < 100; i++) 
  {
    MyRand r;
    std::cout << r.get_rand() << " ";
  }
}

i.e. even though MyRand:s constructor is called several times in rapid succession, each call to srand has a different parameter. Obviously, this is not thread-safe, but then again neither is rand.

link|improve this question
I might add that the whole purpose of this exercise is to relieve the "burden" of calling srand from the client of MyRand, where MyRand might be modelling a die. But on the other hand, if we also build fortune wheels, coin tosses etc. in the same way, we will get a lot of seeds. – a038c56f Jun 10 '09 at 18:42
feedback

5 Answers

up vote 5 down vote accepted

Each time you call a pseudo-random number generator function, the generator takes some internal state and produces a pseudo-random number and a new internal state. The algorithm for transforming the internal state is carefully chosen so the output appears random.

When you seed the random number generator, you're basically setting this internal state. If you reset the internal state to some predictable value, you'll lose the appearance of randomness.

For example, a popular, simple RNG is a linear congruential generator. Numbers are generated like this:

X[n+1] = (a X[n] + c) mod m

In this case, X[n+1] is both the result and the new internal state. If you seed the generator every time as you suggest above, you'll get a sequence that looks like this:

{(ab + c) mod m, (a(b+1) + c) mod m, (a(b+2) + c) mod m, ...}

where b is your seed_base. This doesn't look random at all.

link|improve this answer
My main.cpp example is a little exaggerated for the purpose of demonstrating the lack of the first example's flaw. Instantiating a new object for each call to get_rand will lead to the situation you describe above, but that's just wasteful programming. Assuming that the number of MyRand instantiations are few compared to get_rand calls, things look a little better. – a038c56f Jun 10 '09 at 18:31
feedback

If your seed is predictable, which it is here since you're just incrementing it, the output from rand() will also be predictable.

It really depends on why you want to generate random numbers, and how "random" is an acceptable random for you. In your example, it may avoid duplicates in rapid succession, and that may be good enough for you. After all, what matters is that it runs.

On almost every platform there is a better way to generate random numbers than rand().

link|improve this answer
feedback

Well it's extra processing that doesn't need to be done.

In that scenario I'd just call the constructor once with a time-based seed before the start of the loop. That will guarantee random results without the extra overhead of changing seeds for every iteration.

I wouldn't think your method is any more random than that.

link|improve this answer
feedback

You can think of random number generation (this is not strictly true implementation-wise any more, but serves as an illustration) as a table of values. If you remember doing any of this stuff in statistics for doing simple random samples, a seed basically tells you what row and column to start at in your big table of random numbers. Reseeding over and over again is simply unnecessary since we can already assume that the numbers are normally distributed already.

There is simply no added benefit to seeding more than once since this should be good enough (depending on the application). If you do need "more" random numbers, there are many methods of random number generation. One case that I can think of is to generate random numbers in a thread-safe manner.

While your solution is acceptable, your numbers will be no more random than seeding it once, globally. srand generally shouldn't belong in a constructor. If you'd like to support random numbers, seed once when the program starts, and forget about it.

link|improve this answer
feedback

well what I do to make a random number generator is rather than say x[n+1] = aX[n]+c mod m I assume that there is a multiplication here between so predetermined value a and the original number itself n then some other constant c is added and the result modded with base M what I do is use a whole array of numbers call it a set a which contains a seed of q base M values these are added together for example here is set a with 7 base 8 numbers {3,5,7,4,2,1,6} the list is 7 Units / items long now we add these values together and use the same mod function as in that other algorythm only we take the base compliment of every other digit tat is to say its value subtracted from the highest possible value which is 7 then we use a look - up table that has a list of numbers that contain a list of all 8 possible values in random order call it set b: {5,7,2,3,1,0,6,4} these values are picked from based on the numbers from the first array (after inversion of every other value) set b: is then scrambled after each digit is determined after a prime number from a list of prim numbers of a set size is added to the total and modular division with the base M produces a result which then is added to the list at the end in this case after the 6 , the first digit 3 is dropped and a new set is made with the appended new digit ,every so often a random number say arbitrarily large is picked from the ever increasing random pool , and from that A newly scrambled array of set b is made and the array of a given set of primes b is shuffled thus the modifiers and the prime number array gets constantly shuffled at randomly determined times, thus preserving continually random numbers going into set a (and eliminating the possibility of it ever going into a sequence of states s that produce an endless stream of 1 's 0's or any other repeatable pattern for that matter..thus strengthening the creation of truly random numbers, usually a larger array of numbers would be used, I feel that any number bases 3 or higher might work well for this type of random number generator but bases below say base 128 and bases above base 5 or 6 would work best the best array size would depend on the base of the numbers being used at least 7 or more array members to total array size in bits of 64 or more bits this set a is then hashed to pick from it a real number floating point value between 0 and 1 and that's about it in a nutshell, I believe that with the right initial settings this psuedo random number generator will generate an endless stream of true random numbers that will be ceaselessly random until the end of time or until the device breaks down or runs out of juice.. and I john Robert Einem am to get credit for the design of this random number generator , for I am it's creator , and the creator of the math behind it there is no multiplications here done except maybe at the very end when the floating point real is determined from the array a , one more note , all new values for array or set a are computed before set a is used to determine a random number , even though the elements of the new set a are computed one at a time... the size of the set a remains unchanged, only the order of the values and the values themselves change...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.