2010-05-19 01:53:57 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <random>
|
|
|
|
|
|
|
|
// template<class IntType = int>
|
|
|
|
// class discrete_distribution
|
|
|
|
|
|
|
|
// discrete_distribution(initializer_list<double> wl);
|
|
|
|
|
|
|
|
#include <random>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
#ifdef _LIBCPP_MOVE
|
|
|
|
{
|
|
|
|
typedef std::discrete_distribution<> D;
|
|
|
|
D d = {};
|
|
|
|
std::vector<double> p = d.probabilities();
|
|
|
|
assert(p.size() == 1);
|
|
|
|
assert(p[0] == 1);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
typedef std::discrete_distribution<> D;
|
|
|
|
D d = {10};
|
|
|
|
std::vector<double> p = d.probabilities();
|
|
|
|
assert(p.size() == 1);
|
|
|
|
assert(p[0] == 1);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
typedef std::discrete_distribution<> D;
|
|
|
|
D d = {10, 30};
|
|
|
|
std::vector<double> p = d.probabilities();
|
|
|
|
assert(p.size() == 2);
|
|
|
|
assert(p[0] == 0.25);
|
|
|
|
assert(p[1] == 0.75);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
typedef std::discrete_distribution<> D;
|
|
|
|
D d = {30, 10};
|
|
|
|
std::vector<double> p = d.probabilities();
|
|
|
|
assert(p.size() == 2);
|
|
|
|
assert(p[0] == 0.75);
|
|
|
|
assert(p[1] == 0.25);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
typedef std::discrete_distribution<> D;
|
|
|
|
D d = {30, 0, 10};
|
|
|
|
std::vector<double> p = d.probabilities();
|
|
|
|
assert(p.size() == 3);
|
|
|
|
assert(p[0] == 0.75);
|
|
|
|
assert(p[1] == 0);
|
|
|
|
assert(p[2] == 0.25);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
typedef std::discrete_distribution<> D;
|
|
|
|
D d = {0, 30, 10};
|
|
|
|
std::vector<double> p = d.probabilities();
|
|
|
|
assert(p.size() == 3);
|
|
|
|
assert(p[0] == 0);
|
|
|
|
assert(p[1] == 0.75);
|
|
|
|
assert(p[2] == 0.25);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
typedef std::discrete_distribution<> D;
|
|
|
|
D d = {0, 0, 10};
|
|
|
|
std::vector<double> p = d.probabilities();
|
|
|
|
assert(p.size() == 3);
|
|
|
|
assert(p[0] == 0);
|
|
|
|
assert(p[1] == 0);
|
|
|
|
assert(p[2] == 1);
|
|
|
|
}
|
2010-08-22 00:42:21 +00:00
|
|
|
#endif // _LIBCPP_MOVE
|
2010-05-19 01:53:57 +00:00
|
|
|
}
|