Sdílet prostřednictvím


linear_congruential Class

Generuje náhodné posloupnosti lineární congruential algoritmu.Zachována kompatibilita TR1.Jako náhradu použijte 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
   };

Parametry

  • UIntType
    Výsledek typu celé číslo bez znaménka.

  • A
    Parametr a motoru.

  • C
    Parametr c motoru.

  • M
    Parametr m motoru.

Poznámky

Tato šablona třídy popisuje jednoduché motoru, který vytváří hodnoty zadané uživatelem nepodepsané nedílnou typu pomocí vztahu opakování x(i) = (A * x(i-1) + C) mod M.Stavu motoru je poslední vrátila hodnotu nebo hodnotu osiva, pokud byla provedena žádná volání operator().

Argument šablony UIntType musí být dostatečně velké pro uložení hodnot až M - 1.Hodnoty argumentů šablony A a C musí být menší než M.

Požadavky

Záhlaví: <random>

Obor názvů: std

Viz také

Referenční dokumentace

<random>

linear_congruential::linear_congruential

linear_congruential::operator()

linear_congruential::seed