27#ifndef mx_math_randomT_hpp
28#define mx_math_randomT_hpp
62template <
class typeT,
class _ranengT,
class _randistT>
112 typename ranengT::result_type
seedval;
140template <
typename _RealType =
double>
143 static_assert( std::is_floating_point<_RealType>::value,
"template argument not a floating point type" );
165 return __p1._M_lambda ==
__p2._M_lambda;
199 return _M_param.lambda();
224 return std::numeric_limits<result_type>::min();
232 return std::numeric_limits<result_type>::max();
238 template <
typename _UniformRandomNumberGenerator>
244 template <
typename _UniformRandomNumberGenerator>
250 std::numeric_limits<result_type>::digits,
270template <
typename _RealType>
273 return __d1.param() ==
__d2.param();
280template <
typename _RealType>
296template <
typename _RealType,
typename _CharT,
typename _Traits>
297std::basic_ostream<_CharT, _Traits> &operator<<( std::basic_ostream<_CharT, _Traits> &,
310template <
typename _RealType,
typename _CharT,
typename _Traits>
311std::basic_istream<_CharT, _Traits> &
operator>>( std::basic_istream<_CharT, _Traits> &,
319template <
typename realT>
323template <
typename realT>
327template <
typename realT>
331template <
typename realT>
335template <
typename intT>
339template <
typename realT>
The Laplace (double exponential) continuous distribution for random numbers.
_RealType lambda() const
Returns the inverse scale parameter of the distribution.
void param(const param_type &__param)
Sets the parameter set of the distribution.
laplace_distribution(const result_type &__lambda=result_type(1))
Constructs a Laplace (double exponential) distribution with inverse scale parameter .
void reset()
Resets the distribution state.
result_type min() const
Returns the greatest lower bound value of the distribution.
param_type param() const
Returns the parameter set of the distribution.
result_type max() const
Returns the least upper bound value of the distribution.
result_type operator()(_UniformRandomNumberGenerator &__urng)
Generating functions.
A random number type, which functions like any other arithmetic type.
_randistT distribution
The random distribution.
randomT(bool doSeed=true)
Constructor.
void seed(typename ranengT::result_type seedval)
Set the seed of the random engine.
_ranengT ranengT
Typedef for the engine type.
ranengT engine
The random engine.
_randistT randistT
Typedef for the distribution type.
void seed()
Seed the random engine with a good value.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
int randomSeed(intT &seedval)
Get a value to use as a random seed.
Defines a random number seed generator.
bool operator!=(const laplace_distribution< _RealType > &__d1, const laplace_distribution< _RealType > &__d2)
Return true if two exponential distributions have different parameters.
std::basic_istream< _CharT, _Traits > & operator>>(std::basic_istream< _CharT, _Traits > &, laplace_distribution< _RealType > &)
Extracts a laplace_distribution random number distribution __x from the input stream __is.
bool operator==(const laplace_distribution< _RealType > &__d1, const laplace_distribution< _RealType > &__d2)
Return true if two exponential distributions have the same parameters.