linear_congruential Class
Generiert eine zufällige Sequenz durch den linearen congruential Algorithmus.Beibehalten für Kompatibilität TR1.Verwenden Sie stattdessen linear_congruential_engine Class.
template<class UIntType,
UIntType A, UIntType C, UIntType M>
class linear_congruential {
public:
typedef linear_congruential<UIntType, A, C, M> _MyT;
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(UIntType x0 = default_seed)
linear_congruential(const linear_congruential& right);
linear_congruential(linear_congruential& right);
template<class Gen>
linear_congruential(Gen& gen);
void seed(UIntType x0 = default_seed);
template<class Gen>
void seed(Gen& gen);
result_type min() const;
result_type max() const;
result_type operator()();
private:
result_type stored_value; // exposition only
};
Parameter
UIntType
Der vorzeichenlose Ergebnistyp ganze Zahl.A
Der a-Modulparameter.C
Der C-Modulparameter.M
Der M-Modulparameter.
Hinweise
Diese Vorlagenklasse beschreibt ein einfaches Modul, das Werte eines vom Benutzer angegebenen ganzzahligen Typ ohne Vorzeichen mit der Wiederholungsbeziehung x(i) = (A * x(i-1) + C) mod M erzeugt.Der Zustand des Moduls ist der letzte zurückgegebene Wert oder der Anfangswert, wenn operator() kein Aufruf ausgeführt wurde.
Das Vorlagenargument UIntType muss groß genug sein, Werte bis zu M - 1 aufzunehmen.Die Werte der Vorlagenargumente A und C müssen kleiner als M sein.
Anforderungen
Header: <random>
Namespace: std
Siehe auch
Referenz
linear_congruential::linear_congruential