blob: 3f9e29f8d7c5a3bfb96f47035b755f2c1a62080f [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <random>
// template<class RealType = double>
// class weibull_distribution
// {
// class param_type;
#include <random>
#include <limits>
#include <cassert>
int main()
{
{
typedef std::weibull_distribution<> D;
typedef D::param_type param_type;
param_type p;
assert(p.a() == 1);
assert(p.b() == 1);
}
{
typedef std::weibull_distribution<> D;
typedef D::param_type param_type;
param_type p(10);
assert(p.a() == 10);
assert(p.b() == 1);
}
{
typedef std::weibull_distribution<> D;
typedef D::param_type param_type;
param_type p(10, 5);
assert(p.a() == 10);
assert(p.b() == 5);
}
}