//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // class discrete_distribution // discrete_distribution(); #include #include int main() { { typedef std::discrete_distribution<> D; D d; std::vector p = d.probabilities(); assert(p.size() == 1); assert(p[0] == 1); } }