blob: 11c7fbd6e89eacd9b27b89493c605f47d07f0646 [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 RealType = double>
// class normal_distribution
// explicit normal_distribution(const param_type& parm);
#include <random>
#include <cassert>
int main()
{
{
typedef std::normal_distribution<> D;
typedef D::param_type P;
P p(0.25, 10);
D d(p);
assert(d.mean() == 0.25);
assert(d.stddev() == 10);
}
}