97dc2f35c3
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103888 91177308-0d34-0410-b5e6-96231b3b80d8
38 lines
947 B
C++
38 lines
947 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
|
|
|
|
// bool operator=(const chi_squared_distribution& x,
|
|
// const chi_squared_distribution& y);
|
|
// bool operator!(const chi_squared_distribution& x,
|
|
// const chi_squared_distribution& y);
|
|
|
|
#include <random>
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
{
|
|
typedef std::chi_squared_distribution<> D;
|
|
D d1(2.5);
|
|
D d2(2.5);
|
|
assert(d1 == d2);
|
|
}
|
|
{
|
|
typedef std::chi_squared_distribution<> D;
|
|
D d1(4);
|
|
D d2(4.5);
|
|
assert(d1 != d2);
|
|
}
|
|
}
|