28 lines
619 B
C++
28 lines
619 B
C++
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// 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 chi_squared_distribution
|
||
|
|
||
|
// result_type min() const;
|
||
|
|
||
|
#include <random>
|
||
|
#include <cassert>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
{
|
||
|
typedef std::chi_squared_distribution<> D;
|
||
|
D d(.5);
|
||
|
assert(d.min() == 0);
|
||
|
}
|
||
|
}
|