mersenne_twister::seed
Semena motoru.
template<class Gen>
void seed(Gen& gen)
void seed(unsigned long x0 = default_seed);
Parametry
Gen
Typ generátoru osiva.gen
Generátor osiva.x0
Hodnota osiva.
Poznámky
Předběžná podmínka:0 < x0
První funkce osiva generuje N hodnoty z hodnot typu unsigned long vrácené po sobě jdoucích vyvolání gen a potom twists výsledné hodnoty velké celé číslo.Každá hodnota je gen() % 2W.
Druhá funkce osiva nastaví nejstarší historickou hodnotu h[0] na x0 mod 2W, opakované nastaví každé následné historické hodnoty h[i] na (i + 1812433253 * (h[i - 1] >> (W - 2))) mod 2W, pro i od 1 na N - 1.
Příklad
// std_tr1__random__mersenne_twister_seed.cpp
// compile with: /EHsc
#include <random>
#include <iostream>
typedef std::minstd_rand Myeng;
typedef std::mersenne_twister<unsigned int, 32, 624,
397, 31, 0x9908b0df, 11, 7, 0x9d2c5680,
15, 0xefc60000, 18> Myceng; // same as mt19937
int main()
{
Myeng eng;
Myceng ceng;
Myceng::result_type compval = ceng();
compval = compval; // to quiet "unused" warnings
std::cout << "W == " << Myceng::word_size << std::endl;
std::cout << "N == " << Myceng::state_size << std::endl;
std::cout << "M == " << Myceng::shift_size << std::endl;
std::cout << "R == " << Myceng::mask_bits << std::endl;
std::cout << "A == " << Myceng::parameter_a << std::endl;
std::cout << "U == " << Myceng::output_u << std::endl;
std::cout << "S == " << Myceng::output_s << std::endl;
std::cout << "B == " << Myceng::output_b << std::endl;
std::cout << "T == " << Myceng::output_t << std::endl;
std::cout << "C == " << Myceng::output_c << std::endl;
std::cout << "L == " << Myceng::output_l << std::endl;
std::cout << "min == " << ceng.min() << std::endl;
std::cout << "max == " << ceng.max() << std::endl;
ceng.seed(); // reseed base engine
std::cout << "a random value == " << ceng() << std::endl;
std::cout << "a random value == " << ceng() << std::endl;
std::cout << "a random value == " << ceng() << std::endl;
Myceng ceng2(eng); // construct with generator
ceng2.seed(eng); // seed with generator
Myceng ceng3(5UL); // construct with unsigned long seed
ceng3.seed(5UL); // seed with unsigned long
return (0);
}
Požadavky
Záhlaví: <random>
Obor názvů: std