Namespaces
Variants
Views
Actions

std::normal_distribution<RealType>::reset

From cppreference.com
 
 
 
 
std::normal_distribution
Member functions
normal_distribution::reset
(C++11)
Generation
Characteristics
Non-member functions
(C++11)(C++11)(until C++20)
(C++11)(C++11)
 
void reset();
(since C++11)

Resets the internal state of the distribution object. After a call to this function, the next call to operator() on the distribution object will not be dependent on previous calls to operator().

[edit] Parameters

(none)

[edit] Return value

(none)

[edit] Complexity

Constant.