subtract_with_carry::subtract_with_carry

Construit le moteur.

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);

Paramètres

  • x0
    La valeur initiale.

  • Gen
    Le type du générateur de départ.

  • gen
    Le concepteur de départ.

  • right
    Objet subtract_with_carry.

Notes

Le premier constructeur crée un objet subtract_with_carry et l'initialise en appelant seed().

Le deuxième constructeur crée un objet subtract_with_carry et l'initialise en appelant seed(x0).

Le troisième constructeur crée un objet subtract_with_carry et l'initialise en appelant seed(gen).

Le quatrième les constructeurs et cinquièmes construisent un objet subtract_with_carry en copiant un objet subtract_with_carry.

Exemple

 

// std_tr1__random__subtract_with_carry_construct.cpp 
// compile with: /EHsc 
#include <random> 
#include <iostream> 
 
typedef std::mt19937 Myeng; 
typedef std::subtract_with_carry<unsigned int, 1 << 24, 
    10, 24> Myceng; 
int main() 
    { 
    Myeng eng; 
    Myceng ceng; 
    Myceng::result_type compval = ceng(); 
 
    compval = compval;  // to quiet "unused" warnings 
 
    std::cout << "M == " << Myceng::modulus << std::endl; 
    std::cout << "S == " << Myceng::short_lag << std::endl; 
    std::cout << "R == " << Myceng::long_lag << 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); 
    } 
 
  

Configuration requise

en-tête : <random>

l'espace de noms : DST

Voir aussi

Référence

<random>

subtract_with_carry Class