Espaços nominais
Variantes
Ações

std::seed_seq::seed_seq

De cppreference.com

<metanoindex/>

 
 
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::seed_seq
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.
seed_seq::seed_seq
seed_seq::generate
seed_seq::size
seed_seq::param
 
<tbody> </tbody>
seed_seq();
(1) (desde C++11)
seed_seq( const seed_seq& ) = delete;
(2) (desde C++11)
template< class InputIt > seed_seq( InputIt begin, InputIt end );
(3) (desde C++11)
template< class T > seed_seq( std::initializer_list<T> il );
(4) (desde C++11)
1)
O construtor padrão cria um objeto std::seed_seq com uma seqüência inicial das sementes de comprimento zero.
Original:
The default constructor creates a std::seed_seq object with an initial seed sequence of length zero.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
O construtor de cópia é apagado: std::seed_seq não é copiável.
Original:
The copy constructor is deleted: std::seed_seq is not copyable.
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 um std::seed_seq com a seqüência inicial das sementes obtidas por iteração sobre o [begin, end) gama e copiar os valores obtidos por dereferencing o iterador, modulo 232
(isto é, os últimos 32 bits são copiados)
Original:
Constructs a std::seed_seq with the initial seed sequence obtained by iterating over the range [begin, end) and copying the values obtained by dereferencing the iterator, modulo 232
(that is, the lower 32 bits are copied)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
4)
Equivalente a seed_seq(il.begin(), il.end()). Esse construtor permite lista de inicialização.
Original:
Equivalent to seed_seq(il.begin(), il.end()). This constructor enables lista de inicialização.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parâmetros

begin, end -
a seqüência de semente inicial representado como um par de iteradores de entrada cujo std::iterator_traits<>::value_type é um tipo inteiro
Original:
the initial seed sequence represented as a pair of input iterators whose std::iterator_traits<>::value_type is an integer type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
il -
std::initializer_list de objetos do tipo inteiro, proporcionando a seqüência semente iniial
Original:
std::initializer_list of objects of integer type, providing the iniial seed sequence
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Type requirements
-
InputIt must meet the requirements of InputIterator.

Exemplo

#include <random>
#include <sstream>
#include <iterator>
int main()
{
    std::seed_seq s1; // default-constructible
    std::seed_seq s2{1, 2, 3}; // can use list-initialization
    std::seed_seq s3 = {-1, 0, 1}; // another form of list-initialization
    int a[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
    std::seed_seq s4(a, a + 10); // can use iterators
    std::istringstream buf("1 2 3 4 5"); 
    std::istream_iterator<int> beg(buf), end;
    std::seed_seq s5(beg, end); // even stream input iterators
}


Morty Proxy This is a proxified and sanitized view of the page, visit original site.