Sdílet prostřednictvím


subtract_with_carry Class

Vygeneruje náhodné posloupnosti odečíst s algoritmem provádět.Zachována kompatibilita TR1.Jako náhradu použijte subtract_with_carry_engine Class.

template<class IntType,
   IntType M, int S, int R>
   class subtract_with_carry {
public:
   typedef IntType result_type;
   typedef subtract_with_carry<IntType, M, S, R> _Myt;
   static const IntType modulus = M;
   static const IntType default_seed = 19780503U;
   static const int short_lag = S;
   static const int long_lag = R;
   subtract_with_carry();
   explicit subtract_with_carry(unsigned long x0 = default_seed);
   template<class Gen>
      subtract_with_carry(Gen& gen);
   subtract_with_carry(const subtract_with_carry& right);
   subtract_with_carry(subtract_with_carry& right);
   void seed(unsigned long x0 = 19780503UL);
   template<class Gen>
      void seed(Gen& gen);
   result_type min() const;
   result_type max() const;
   result_type operator()();
   };

Parametry

  • IntType
    Výsledek typu celé číslo.

  • M
    Parametr m motoru.

  • S
    Parametr s motorem.

  • R
    Parametr r motoru.

Poznámky

Šablona třídy popsáno jednoduchý stroj, který vytváří hodnoty zadané uživatelem integrálního typu, pomocí vztahu opakování x(i) = (x(i - R) - x(i - S) - cy(i - 1)) mod M, kde cy(i) má hodnotu 1 -li x(i - S) - x(i - R) - cy(i - 1) < 0, jinak 0.Stav motoru je poslední R Pokud vrácené hodnoty operator() byla volána alespoň R časy jinak M hodnoty, které byly vráceny a poslední R - M hodnoty osiva.

Argument šablony IntType musí být dostatečně velké pro uložení hodnot až M - 1.Hodnoty argumentů šablony S a R musí být větší než 0 a S musí být menší než R.

Požadavky

Záhlaví: <random>

Obor názvů: std

Viz také

Referenční dokumentace

<random>

subtract_with_carry_01 Class

subtract_with_carry::operator()

subtract_with_carry::seed

subtract_with_carry::subtract_with_carry