2cf89a71df
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@153873 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
699 B
C++
30 lines
699 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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 IntType = int>
|
|
// class discrete_distribution
|
|
|
|
// discrete_distribution();
|
|
|
|
#include <random>
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
{
|
|
typedef std::discrete_distribution<> D;
|
|
D d;
|
|
std::vector<double> p = d.probabilities();
|
|
assert(p.size() == 1);
|
|
assert(p[0] == 1);
|
|
}
|
|
}
|