]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/values.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / random / hypergeometric_distribution / operators / values.cc
CommitLineData
94612be7 1// { dg-options "-std=gnu++11" }
2// { dg-require-cstdint "" }
33eadb7a 3// { dg-require-cmath "" }
94612be7 4//
5// 2013-11-18 Edward M. Smith-Rowland <3dw4rd@verizon.net>
6//
f1717362 7// Copyright (C) 2013-2016 Free Software Foundation, Inc.
94612be7 8//
9// This file is part of the GNU ISO C++ Library. This library is free
10// software; you can redistribute it and/or modify it under the
11// terms of the GNU General Public License as published by the
12// Free Software Foundation; either version 3, or (at your option)
13// any later version.
14//
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License along
21// with this library; see the file COPYING3. If not see
22// <http://www.gnu.org/licenses/>.
23
2e8e2399 24// Class template hypergeometric_distribution
25// 26.5.1.6 Random number distribution requirements [rand.req.dist]
94612be7 26
27#include <ext/random>
2f4d3737 28#include <functional>
94612be7 29#include <testsuite_random.h>
30
31void
32test01()
33{
34 using namespace __gnu_test;
35
36 std::mt19937 eng;
37
e16d3a3b 38 __gnu_cxx::hypergeometric_distribution<> hd1{15, 3, 2};
94612be7 39 auto bhd1 = std::bind(hd1, eng);
40 testDiscreteDist(bhd1, [](int k)
41 { return hypergeometric_pdf(k, 15, 3, 2); });
42
e16d3a3b 43 __gnu_cxx::hypergeometric_distribution<> hd2{500, 50, 30};
94612be7 44 auto bhd2 = std::bind(hd2, eng);
45 testDiscreteDist(bhd2, [](int k)
46 { return hypergeometric_pdf(k, 500, 50, 30); });
47
e16d3a3b 48 __gnu_cxx::hypergeometric_distribution<> hd3{100, 20, 5};
94612be7 49 auto bhd3 = std::bind(hd3, eng);
50 testDiscreteDist(bhd3, [](int k)
51 { return hypergeometric_pdf(k, 100, 20, 5); });
52}
53
54int
55main()
56{
57 test01();
58 return 0;
59}