blob: 076cd08293f2e63167cb1c3f2d70cbc5e04adc11 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <random>
// template<class RealType = double>
// class cauchy_distribution
// {
// class param_type;
#include <random>
#include <limits>
#include <cassert>
int main()
{
{
typedef std::cauchy_distribution<> D;
typedef D::param_type param_type;
param_type p;
assert(p.a() == 0);
assert(p.b() == 1);
}
{
typedef std::cauchy_distribution<> D;
typedef D::param_type param_type;
param_type p(10);
assert(p.a() == 10);
assert(p.b() == 1);
}
{
typedef std::cauchy_distribution<> D;
typedef D::param_type param_type;
param_type p(10, 5);
assert(p.a() == 10);
assert(p.b() == 5);
}
}