libcoyotl - A Library of C++ Tools
Created by Scott Robert Ladd at
Coyote Gulch Productions.
libcoyotl::kissrng Class Reference
Implements KISS, a peudorandom number generator.
More...
#include <kissrng.h>
Inheritance diagram for libcoyotl::kissrng:
List of all members.Public Member Functions
- kissrng ()
- Default constructor, reading seed from/dev/urandom or the time.
- kissrng (uint32_t seed)
- Default constructor, with optional seed.
- virtual void init (uint32_t seed)
- Initializes the generator with "seed".
- virtual uint32_t get_rand ()
- Get the next integer.
Detailed Description
The popular "Keep It Simple Stupid" psuedorandom number generator. It has a period of around 2^125, which is shorter than most other algorithms, but certainly adequate for many applications.
Constructor & Destructor Documentation
libcoyotl::kissrng::kissrng |
( |
|
) |
|
|
|
The constructor initializes the prng seed from either the time or some stochastic source such as /dev/random or /dev/urandom. |
libcoyotl::kissrng::kissrng |
( |
uint32_t |
seed |
) |
|
|
|
The constructor uses an explicit value for the seed. - Parameters:
-
| seed | - Seed value used to "start" or seed the generator |
|
Member Function Documentation
virtual uint32_t libcoyotl::kissrng::get_rand |
( |
|
) |
[virtual] |
|
|
Returns the next uint32_t in sequence. - Returns:
- A pseudorandom uint32_t value
Implements libcoyotl::prng. |
virtual void libcoyotl::kissrng::init |
( |
uint32_t |
seed |
) |
[virtual] |
|
|
Resets the generator using the provided seed value. - Parameters:
-
| seed | - Seed value used to "start" or seed the generator |
Reimplemented from libcoyotl::prng. |
The documentation for this class was generated from the following file:
© 1996-2005 Scott Robert Ladd. All rights reserved.
HTML documentation generated by Dimitri van Heesch's excellent Doxygen tool.