Espacios de nombres
Variantes
Acciones

std::discard_block_engine::seed

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::seed
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.
 
void seed();
(1) (desde C++11)
void seed( result_type value );
(2) (desde C++11)
template<class Sseq >
void seed( Sseq& seq );
(3) (desde C++11)
Reinicializa el estado interno del motor subyacente mediante un nuevo valor de inicialización .
Original:
Reinitializes the internal state of the underlying engine using a new seed value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Semillas del motor subyacente con el valor de inicialización por defecto. Eficazmente llama e.seed(), donde e es el motor subyacente .
Original:
Seeds the underlying engine with the default seed value. Effectively calls e.seed(), where e is the underlying engine.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Semillas del motor subyacente con el s valor de inicialización. Eficazmente llama e.seed(value), donde e es el motor subyacente .
Original:
Seeds the underlying engine with the seed value s. Effectively calls e.seed(value), where e is the underlying engine.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Semillas el motor subyacente con la seq secuencia de semillas. Eficazmente llama e.seed(seq), donde e es el motor subyacente .
Original:
Seeds the underlying engine with the seed sequence seq. Effectively calls e.seed(seq), where e is the underlying engine.
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

value -
semilla de valor a utilizar en la inicialización del estado interno del motor subyacente
Original:
seed value to use in the initialization of the internal state of the underlying engine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
seq -
secuencia de semillas a utilizar en la inicialización del estado interno del motor subyacente
Original:
seed sequence to use in the initialization of the internal state of the underlying engine
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Excepciones

(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
close