std::linear_congruential_engine::seed
De cppreference.com
< cpp | numeric | random | linear congruential engine
![]() | Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate. La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
void seed( result_type value = default_seed ); | (1) | (desde C++11) |
template<class Sseq > void seed( Sseq& seq ); | (2) | (desde C++11) |
Reinicializa el estado interno de los números aleatorios motor con nuevo valor de inicialización .
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.
Esta sección está incompleta |
[editar]Parámetros
value | - | valor de inicialización para usar en la inicialización del estado 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 | - | secuencia de semillas a utilizar en la inicialización del estado 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. |
[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.
You can help to correct and verify the translation. Click here for instructions.
[editar]Complejidad
Esta sección está incompleta |