blob: a143b5a68f4cc8d6836f4bd8b145a84dea64790c [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>
// class bernoulli_distribution
// explicit bernoulli_distribution(const param_type& parm);
#include <random>
#include <cassert>
int main()
{
{
typedef std::bernoulli_distribution D;
typedef D::param_type P;
P p(0.25);
D d(p);
assert(d.p() == 0.25);
}
}