Constructors
Declared in <absl/random/poisson_distribution.h>
Constructs a distribution with a mean of 1.0.
poisson_distribution();
» more...
Constructs a distribution with the given mean.
explicit
poisson_distribution(double mean);
» more...
Constructs a distribution from the given parameter set.
explicit
poisson_distribution(param_type const& p);
» more...
| Name | Description |
|---|---|
| mean | The mean of the distribution. |
| p | The parameter set. |