variate_generator::engine_type
The type of the wrapped engine.
typedef Engine engine_type;
Remarks
The type is a synonym for the template parameter Engine.
Example
// std_tr1__random__variate_generator_engine_type.cpp
// compile with: /EHsc
#include <random>
#include <iostream>
typedef std::minstd_rand Myeng;
typedef std::uniform_int<unsigned int> Mydist;
typedef std::variate_generator<Myeng, Mydist> Myceng;
int main()
{
Myeng eng0;
Mydist dist0;
Myceng ceng(eng0, dist0);
const Myceng::engine_type& eng = ceng.engine(); // get base engine
const Myceng::distribution_type& dist =
ceng.distribution(); // get distribution
Myceng::result_type compval = ceng();
compval = compval; // to quiet "unused" warnings
eng.min();
dist.min();
std::cout << "min == " << ceng.min() << std::endl;
std::cout << "max == " << ceng.max() << std::endl;
std::cout << "a random value == " << ceng() << std::endl;
std::cout << "a random value == " << ceng() << std::endl;
std::cout << "a random value == " << ceng() << std::endl;
return (0);
}
min == 0 max == 9 a random value == 0 a random value == 6 a random value == 8
Requirements
Header: <random>
Namespace: std