blob: b335b1fbe44537a8121b105745576b84f73e4967 [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
// {
// class param_type;
#include <random>
#include <limits>
#include <cassert>
int main()
{
{
typedef std::fisher_f_distribution<> D;
typedef D::param_type param_type;
param_type p0(.75, 6);
param_type p;
p = p0;
assert(p.m() == .75);
assert(p.n() == 6);
}
}