blob: 756dd3ee09c7e79270c216605f112145e1ac1e50 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
// param_type(initializer_list<double> wl);
#include <random>
#include <cassert>
int main()
{
{
typedef std::discrete_distribution<> D;
typedef D::param_type P;
P pa;
std::vector<double> p = pa.probabilities();
assert(p.size() == 1);
assert(p[0] == 1);
}
}