std::linear_congruential_engine::seed
Da cppreference.com.
< cpp | numeric | random | linear congruential engine
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
void seed( result_type value = default_seed ); | (1) | (dal C++11) |
template<class Sseq > void seed( Sseq& seq ); | (2) | (dal C++11) |
Reinizializza lo stato interno di numeri casuali motore con nuovo valore di inizializzazione.
Original:
Reinitializes the internal state of the random-number engine using 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.
You can help to correct and verify the translation. Click here for instructions.
This section is incomplete |
[modifica]Parametri
value | - | valore di inizializzazione da utilizzare per l'inizializzazione dello stato interno Original: seed value to use in the initialization of the internal state The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
seq | - | sequenza sementi usare nella inizializzazione dello stato interno Original: seed sequence to use in the initialization of the internal state The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica]Eccezioni
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Complessità
This section is incomplete |