std::linear_congruential_engine::seed
Aus cppreference.com
< cpp | numeric | random | linear congruential 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( result_type value = default_seed ); |
(1) | (seit C++11) |
template< class Sseq > void seed( Sseq& seq ); |
(2) | (seit C++11) |
Initialisiert den internen Zustand des Zufallsgenerators Motor mit neuen Startwert .
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 |
[Bearbeiten] Parameter
value | - | Startwertes in der Initialisierung des internen Zustands zu verwenden
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 | - | Seed-Sequenz in der Initialisierung des internen Zustands zu verwenden
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. |
[Bearbeiten] Ausnahmen
(None)
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.
[Bearbeiten] Komplexität
This section is incomplete |