Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/numeric/random/discrete distribution/reset"

From cppreference.com
(+)
 
m (Add link to edit the included template)
Line 1: Line 1:
{{cpp/numeric/random/distribution/reset|discrete_distribution}}
+
{{cpp/numeric/random/distribution/reset|discrete_distribution}}

Revision as of 09:49, 14 October 2012

 
 
 
 
 
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().

Parameters

(none)

Return value

(none)

Complexity

Constant.