blob: c496a886f55f53c6eb3b123712136e26695b6909 [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 fisher_f_distribution
// explicit fisher_f_distribution(result_type alpha = 0, result_type beta = 1);
#include <random>
#include <cassert>
int main()
{
{
typedef std::fisher_f_distribution<> D;
D d;
assert(d.m() == 1);
assert(d.n() == 1);
}
{
typedef std::fisher_f_distribution<> D;
D d(14.5);
assert(d.m() == 14.5);
assert(d.n() == 1);
}
{
typedef std::fisher_f_distribution<> D;
D d(14.5, 5.25);
assert(d.m() == 14.5);
assert(d.n() == 5.25);
}
}