linear_congruential_engine Class
Generuje losowe liniowej algorytm złożony.
template<class UIntType,
UIntType A, UIntType C, UIntType M>
class linear_congruential_engine {
public:
typedef UIntType result_type;
static const UIntType multiplier = A;
static const UIntType increment = C;
static const UIntType modulus = M;
static const UIntType default_seed = 1U;
explicit linear_congruential_engine(result_type x0 = default_seed);
explicit linear_congruential_engine(seed_seq& seq);
void seed(result_type x0 = default_seed);
void seed(seed_seq& seq);
static const result_type min();
static const result_type max();
result_type operator()();
void discard(unsigned long long count)();
private:
result_type stored_value;
};
Parametry
UIntType
Typ wyniku liczba całkowita bez znaku.A
Parametr silnika A.C
Parametr c silnika.M
Parametr m silnika.
Uwagi
Zawiera opis szablonu klasy <random> daje wartości określone przez użytkownika niepodpisane integralną typu za pomocą relacji relationrecurrence ponownego x(i) = (A * x(i-1) + C) mod M.Stan silnika jest ostatnia wartość zwracana lub wartości materiału siewnego, jeżeli zostały złożone nie wywołania operator().
Argument szablonu UIntType musi być wystarczająco duża, aby przechowywać wartości do M - 1.Wartości argumentów szablonu A i C musi być mniejsza niż M.
Wymagania
Nagłówek: <random>
Obszar nazw: std
Zobacz też
Informacje
linear_congruential_engine::discard
linear_congruential_engine::linear_congruential_engine