Home | Libraries | People | FAQ | More |
boost::random::lagged_fibonacci_engine
// In header: <boost/random/lagged_fibonacci.hpp> template<typename UIntType, int w, unsigned int p, unsigned int q> class lagged_fibonacci_engine { public: // types typedef UIntType result_type; // construct/copy/destruct lagged_fibonacci_engine(); explicit lagged_fibonacci_engine(UIntType); template<typename SeedSeq> explicit lagged_fibonacci_engine(SeedSeq &); template<typename It> lagged_fibonacci_engine(It &, It); // public static functions static result_type min(); static result_type max(); // public member functions void seed(); void seed(UIntType); template<typename SeedSeq> void seed(SeedSeq &); template<typename It> void seed(It &, It); result_type operator()(); template<typename Iter> void generate(Iter, Iter); void discard(boost::uintmax_t); // friend functions template<typename CharT, typename Traits> friend std::basic_ostream< CharT, Traits > & operator<<(std::basic_ostream< CharT, Traits > &, const lagged_fibonacci_engine &); template<typename CharT, typename Traits> friend std::basic_istream< CharT, Traits > & operator>>(std::basic_istream< CharT, Traits > &, const lagged_fibonacci_engine &); friend bool operator==(const lagged_fibonacci_engine &, const lagged_fibonacci_engine &); friend bool operator!=(const lagged_fibonacci_engine &, const lagged_fibonacci_engine &); // public data members static const bool has_fixed_range; static const int word_size; static const unsigned int long_lag; static const unsigned int short_lag; static const UIntType default_seed; };
Instantiations of class template lagged_fibonacci_engine model a pseudo-random number generator . It uses a lagged Fibonacci algorithm with two lags p
and q:
x(i) = x(i-p) + x(i-q) (mod 2w) with p > q.
lagged_fibonacci_engine
public
construct/copy/destructlagged_fibonacci_engine();
Creates a new
and calls lagged_fibonacci_engine
seed()
.
explicit lagged_fibonacci_engine(UIntType value);
Creates a new
and calls lagged_fibonacci_engine
seed(value)
.
template<typename SeedSeq> explicit lagged_fibonacci_engine(SeedSeq & seq);
Creates a new
and calls lagged_fibonacci_engine
seed(seq)
.
template<typename It> lagged_fibonacci_engine(It & first, It last);
Creates a new
and calls lagged_fibonacci_engine
seed(first, last)
.
lagged_fibonacci_engine
public member functionsvoid seed();
Calls seed(default_seed)
.
void seed(UIntType value);
Sets the state of the generator to values produced by a minstd_rand0
generator.
template<typename SeedSeq> void seed(SeedSeq & seq);
Sets the state of the generator using values produced by seq.
template<typename It> void seed(It & first, It last);
Sets the state of the generator to values from the iterator range [first, last). If there are not enough elements in the range [first, last) throws std::invalid_argument
.
result_type operator()();
Returns the next value of the generator.
template<typename Iter> void generate(Iter first, Iter last);
Fills a range with random values
void discard(boost::uintmax_t z);
Advances the state of the generator by z
.
lagged_fibonacci_engine
friend functionstemplate<typename CharT, typename Traits> friend std::basic_ostream< CharT, Traits > & operator<<(std::basic_ostream< CharT, Traits > & os, const lagged_fibonacci_engine & f);
Writes the textual representation of the generator to a std::ostream
.
template<typename CharT, typename Traits> friend std::basic_istream< CharT, Traits > & operator>>(std::basic_istream< CharT, Traits > & is, const lagged_fibonacci_engine & f);
Reads the textual representation of the generator from a std::istream
.
friend bool operator==(const lagged_fibonacci_engine & x, const lagged_fibonacci_engine & y);
Returns true if the two generators will produce identical sequences of outputs.
friend bool operator!=(const lagged_fibonacci_engine & lhs, const lagged_fibonacci_engine & rhs);
Returns true if the two generators will produce different sequences of outputs.