|
Infinity Engine v0.6.20
C++ API Documentation
|
Parameter set for the distribution. More...
#include <PRNGDistribution.hpp>
Public Types | |
| using | distribution_type = ExtremeValueDistribution< RealType > |
Public Member Functions | |
| param_type () | |
| Default constructor. Creates parameters for standard Gumbel (a=0, b=1). | |
| param_type (RealType a, RealType b=RealType(1)) | |
| Constructs parameters. | |
| RealType | a () const |
| Gets the location parameter. | |
| RealType | b () const |
| Gets the scale parameter. | |
Friends | |
| bool | operator== (const param_type &lhs, const param_type &rhs) |
| bool | operator!= (const param_type &lhs, const param_type &rhs) |
Parameter set for the distribution.
Stores the location and scale parameters of the extreme value distribution.
| using Infinity::Engine::ExtremeValueDistribution< RealType >::param_type::distribution_type = ExtremeValueDistribution<RealType> |
|
inline |
Default constructor. Creates parameters for standard Gumbel (a=0, b=1).
|
inlineexplicit |
Constructs parameters.
| a | Location parameter (mode of the distribution) |
| b | Scale parameter (must be > 0), defaults to 1 |
|
inline |
Gets the location parameter.
|
inline |
Gets the scale parameter.
|
friend |
|
friend |