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