blob: 004b8787a44f5d1afc46577afc55e3fe83341c47 [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 exponential_distribution
// result_type max() const;
#include <random>
#include <cassert>
int main()
{
{
typedef std::exponential_distribution<> D;
D d(.25);
D::result_type m = d.max();
assert(146 < m && m < 147);
}
}