Espaços nominais
Variantes
Acções

std::discard_block_engine::discard_block_engine

Da cppreference.com

 
 
Biblioteca numéricos
Funções matemáticas comuns
De ponto flutuante ambiente
Números complexos
Matrizes numéricas
Pseudo-aleatório de geração de números
Tempo de compilação aritmética racional (C++11)
Genéricos operações numéricas
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
Pseudo-aleatório de geração de números
Motores e 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.
Geradores
Original:
Generators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuições
Original:
Distributions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Distribuições 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.
Distribuições de Bernoulli
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.
Distribuições de Poisson
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.
Distribuições normais
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.
Distribuições de amostragem
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.
Seqüências de sementes
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
Funções de membro
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
discard_block_engine::seed
discard_block_engine::base
Geração
Original:
Generation
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::operator()
discard_block_engine::discard
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.
discard_block_engine::min
discard_block_engine::max
Não-membros funções
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)
Constrói adaptador novo motor pseudo-aleatório.
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)
Construtor padrão. O mecanismo subjacente também é padrão construído.
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)
Constrói o mecanismo subjacente com seq seqüência de sementes.
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)
Constrói o mecanismo subjacente com uma cópia do 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)
Mova-constrói o mecanismo subjacente com e. e mantém o estado não especificada, mas válido depois.
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 -
seqüência de semente para a construção do mecanismo subjacente com
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-aleatório motor número para inicializar com
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.