cxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/max.pass.cpp

29 lines
655 B
C++
Raw Normal View History

//===----------------------------------------------------------------------===//
//
// 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 max() const;
#include <random>
#include <cassert>
int main()
{
{
typedef std::chi_squared_distribution<> D;
D d(5);
D::result_type m = d.max();
assert(m == INFINITY);
}
}