37#if !defined(LIBCOYOTL_KISSRNG_H)
38#define LIBCOYOTL_KISSRNG_H
A STL-compatible array class.
Definition array.h:73
Implements KISS, a peudorandom number generator.
Definition kissrng.h:51
kissrng(uint32_t seed)
Default constructor, with optional seed.
kissrng()
Default constructor, reading seed from/dev/urandom or the time.
virtual void init(uint32_t seed)
Initializes the generator with "seed".
virtual uint32_t get_rand()
Get the next integer.
An abstract definition of a peudorandom number generator.
Definition prng.h:55