File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -225,15 +225,16 @@ The second constructor constructs an object whose stored parameters are initiali
225225Stores the parameters of the distribution.
226226
227227```cpp
228- struct param_type {
229- typedef negative_binomial_distribution`<`result_type> distribution_type;
230- param_type(result_type k = 1, double p = 0.5);
231- result_type k() const;
232- double p() const;
233-
234- bool operator==(const param_type& right) const;
235- bool operator!=(const param_type& right) const;
236- };
228+ struct param_type
229+ {
230+ typedef negative_binomial_distribution<result_type> distribution_type;
231+ param_type(result_type k = 1, double p = 0.5);
232+ result_type k() const;
233+ double p() const;
234+
235+ bool operator==(const param_type& right) const;
236+ bool operator!=(const param_type& right) const;
237+ };
237238```
238239
239240### Parameters
You can’t perform that action at this time.
0 commit comments