std::independent_bits_engine::seed
De cppreference.com
< cpp | numeric | random | independent bits engine
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
void seed(); |
(1) | (depuis C++11) |
void seed( result_type value ); |
(2) | (depuis C++11) |
template< class Sseq > void seed( Sseq& seq ); |
(3) | (depuis C++11) |
Réinitialise l'état interne du moteur sous-jacent à l'aide d'une nouvelle valeur de départ .
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.
You can help to correct and verify the translation. Click here for instructions.
1)
Graines du moteur sous-jacent à la valeur de départ par défaut. Appelle effectivement e.seed(), où
e
est le moteur sous-jacent .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.
You can help to correct and verify the translation. Click here for instructions.
2)
Graines du moteur sous-jacent avec la
s
valeur de départ. Appelle effectivement e.seed(value), où e
est le moteur sous-jacent .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.
You can help to correct and verify the translation. Click here for instructions.
3)
Graines du moteur sous-jacent avec la séquence
seq
semences. Appelle effectivement e.seed(seq), où e
est le moteur sous-jacent .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.
You can help to correct and verify the translation. Click here for instructions.
[modifier] Paramètres
value | - | graines de la valeur à utiliser lors de l'initialisation de l'état interne du moteur sous-jacent
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 | - | séquence de semences à utiliser lors de l'initialisation de l'état interne du moteur sous-jacent
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. |
[modifier] Retourne la valeur
(Aucun)
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.
[modifier] Exceptions
(Aucun)
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.