Scopira  20080306
Random numbers

Introduction

Scopira includes a collection of random number generation classes that allow for complete control over random number generation and distribution. A light wrapper API is also provided for the basic OS provided random number generation, including any "real" random number generation services that may be provided.

However, you should favour the Scopira provided classes for serveral reasons:

  • full source code available
  • portable to all OSes (ie. identical results on all platforms)
  • full control over the seeding process (ie. reproducable runs)

The random classes

Broken down by header file:

Class usage

All the random number generators and distributions follow a general compile type form - borrowed from boost (boost, boost's random). This makes them fast.

To use these generators, you maintain an instance of one of the seed-able, local-state generators (currently, either minstd_rand or minstd_rand0). Call this your random generator core.

Around your random core, you can have one or more distributions. Every time you ask them for a number, they ask the core then massage it to fit their distributions.

All random generators and distributions provide you with various methods. min() and max() return just that. operator() returns you the next number in the sequence.

Example

Here is an example:

#include <scopira/tool/random.h>
#include <scopira/tool/linconrandom.h>
void foo(void) {
scopira::tool::lincon_core rcore; // the typical code
rcore.seed(time_seed()); // seed it with a "random" value
scopira::tool::lincon_01 dist(rcore); // wrap a standard 0..1 distributor around the core
// note that you can have multi distribution objects around the same
// and that you can also simply make distribution objects as needed
// (distribution objects have no state themselves)
for (int x=0; x<5; ++x)
OUTPUT << ' ' << dist(); // the () operator invokes the distribution to get the next number
}