38#if !defined(LIBCOYOTL_CMWC4096_H)
39#define LIBCOYOTL_CMWC4096_H
55 static const size_t N = 4096;
A STL-compatible array class.
Definition array.h:73
Implements CMWC4096, a peudorandom number generator.
Definition cmwc4096.h:52
virtual uint32_t get_rand()
Get the next integer.
cmwc4096()
Default constructor, reading seed from/dev/urandom or the time.
cmwc4096(uint32_t seed)
Default constructor, with optional seed.
virtual void init(uint32_t seed)
Initializes the generator with "seed".
An abstract definition of a peudorandom number generator.
Definition prng.h:55