2010-05-17 13:44:27 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 22:09:02 +00:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-17 13:44:27 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <random>
|
|
|
|
|
|
|
|
// template<class IntType = int>
|
|
|
|
// class geometric_distribution
|
|
|
|
|
|
|
|
// explicit geometric_distribution(double p = 0.5);
|
|
|
|
|
|
|
|
#include <random>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
typedef std::geometric_distribution<> D;
|
|
|
|
D d;
|
|
|
|
assert(d.p() == 0.5);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
typedef std::geometric_distribution<> D;
|
|
|
|
D d(0.75);
|
|
|
|
assert(d.p() == 0.75);
|
|
|
|
}
|
|
|
|
}
|