blob: 0bdf2c337d27c698832b487afb5ba4eb73e02e4f [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 piecewise_linear_distribution
// param_type();
#include <random>
#include <cassert>
int main()
{
{
typedef std::piecewise_linear_distribution<> D;
typedef D::param_type P;
P pa;
std::vector<double> iv = pa.intervals();
assert(iv.size() == 2);
assert(iv[0] == 0);
assert(iv[1] == 1);
std::vector<double> dn = pa.densities();
assert(dn.size() == 2);
assert(dn[0] == 1);
assert(dn[1] == 1);
}
}