geometric_distribution::param_type

分布パラメーターを格納します。

struct param_type {
    typedef binomial_distribution<IntType, RealType> distribution_type;
    param_type(RealType p0 = RealType(0.5));
    RealType p() const;
    bool operator==(const param_type& right) const;
    bool operator!=(const param_type& right) const;
    };

解説

このパラメーター パッケージを operator() に渡して、戻り値を生成できます。

必要条件

ヘッダー : <random>

名前空間: std

参照

関連項目

<random>

geometric_distribution クラス