![]() |
Home | Libraries | People | FAQ | More |
boost::random::rand48
// In header: <boost/random/linear_congruential.hpp> class rand48 { public: // types typedef boost::uint32_t ; // construct/copy/destruct (); (result_type); template<typename SeedSeq> (SeedSeq &); template<typename It> (It &, It); // public static functions constexpr uint32_t (); constexpr uint32_t (); // public member functions void (); void (result_type); template<typename It> void (It &, It); template<typename SeedSeq> void (SeedSeq &); uint32_t (); void (boost::uintmax_t); template<typename Iter> void (Iter, Iter); // friend functions template<typename CharT, typename Traits> CharT, Traits > & (CharT, Traits > &, const rand48 &); template<typename CharT, typename Traits> CharT, Traits > & (CharT, Traits > &, rand48 &); bool (const rand48 &, const rand48 &); bool (const rand48 &, const rand48 &); // public data members static const bool has_fixed_range; };
Class rand48
models a pseudo-random number generator . It uses the linear congruential algorithm with the parameters a = 0x5DEECE66D, c = 0xB, m = 2**48. It delivers identical results to the lrand48()
function available on some systems (assuming lcong48 has not been called).
It is only available on systems where uint64_t
is provided as an integral type, so that for example static in-class constants and/or enum definitions with large uint64_t
numbers work.
rand48
public
construct/copy/destruct();
Seeds the generator with the default seed.
(result_type x0);
Constructs a rand48
generator with x(0) := (x0 << 16) | 0x330e.
template<typename SeedSeq> (SeedSeq & seq);
Seeds the generator with values produced by seq.generate()
.
template<typename It> (It & first, It last);
Seeds the generator using values from an iterator range, and updates first to point one past the last value consumed.
rand48
public member functionsvoid ();
Seeds the generator with the default seed.
void (result_type x0);
Changes the current value x(n) of the generator to (x0 << 16) | 0x330e.
template<typename It> void (It & first, It last);
Seeds the generator using values from an iterator range, and updates first to point one past the last value consumed.
template<typename SeedSeq> void (SeedSeq & seq);
Seeds the generator with values produced by seq.generate()
.
uint32_t ();
Returns the next value of the generator.
void (boost::uintmax_t z);
Advances the state of the generator by z
.
template<typename Iter> void (Iter first, Iter last);
Fills a range with random values
rand48
friend functionstemplate<typename CharT, typename Traits> CharT, Traits > & (CharT, Traits > & os, const rand48 & r);
Writes a
to a rand48
std::ostream
.
template<typename CharT, typename Traits> CharT, Traits > & (CharT, Traits > & is, rand48 & r);
Reads a
from a rand48
std::istream
.
bool (const rand48 & x, const rand48 & y);
Returns true if the two generators will produce identical sequences of values.
bool (const rand48 & x, const rand48 & y);
Returns true if the two generators will produce different sequences of values.