Espacios de nombres
Variantes
Acciones

std::discard_block_engine::discard_block_engine

De cppreference.com
 
 
 
Generación de números pseudoaleatorios
Motores y adaptadores de motor
Original:
Engines and engine adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Generadores
Original:
Generators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuciones
Original:
Distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuciones uniformes
Original:
Uniform distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Bernoulli distribuciones
Original:
Bernoulli distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Poisson distribuciones
Original:
Poisson distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuciones normales
Original:
Normal distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuciones de muestreo
Original:
Sampling distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Secuencias de semillas
Original:
Seed Sequences
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
C biblioteca
Original:
C library
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
std::discard_block_engine
Las funciones miembro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
discard_block_engine::discard_block_engine
Generación
Original:
Generation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Características
Original:
Characteristics
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Terceros funciones
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
discard_block_engine();
(1) (desde C++11)
template< class Sseq >
explicit discard_block_engine( Sseq& seq );
(2) (desde C++11)
explicit discard_block_engine( const Engine& e );
(3) (desde C++11)
explicit discard_block_engine( const Engine&& e );
(4) (desde C++11)
Construye nueva pseudo-aleatorio adaptador del motor .
Original:
Constructs new pseudo-random engine adaptor.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Por defecto constructor. El motor subyacente también default-construido .
Original:
Default constructor. The underlying engine is also default-constructed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Construye el motor subyacente con seq semilla secuencia .
Original:
Constructs the underlying engine with seed sequence seq.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Construye el motor subyacente con una copia de e .
Original:
Constructs the underlying engine with a copy of e.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
4)
Mover-construye el motor subyacente con e. e mantiene un estado indeterminado, pero válido después .
Original:
Move-constructs the underlying engine with e. e holds unspecified, but valid state afterwards.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Parámetros

seq -
secuencia de semillas para construir el motor subyacente con
Original:
seed sequence to construct the underlying engine with
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
e -
pseudo-aleatorio motor número inicializar con
Original:
pseudo-random number engine to initialize with
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.