]> 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
52066eae 1// { dg-do run { target c++11 } }
d2ae7b11 2// { dg-require-cstdint "" }
0fe530b6 3// { dg-require-cmath "" }
d2ae7b11
ESR
4//
5// 2013-11-18 Edward M. Smith-Rowland <3dw4rd@verizon.net>
6//
a945c346 7// Copyright (C) 2013-2024 Free Software Foundation, Inc.
d2ae7b11
ESR
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
7d594ac8
JW
24// Class template hypergeometric_distribution
25// 26.5.1.6 Random number distribution requirements [rand.req.dist]
d2ae7b11
ESR
26
27#include <ext/random>
72fd36d7 28#include <functional>
d2ae7b11
ESR
29#include <testsuite_random.h>
30
31void
32test01()
33{
34 using namespace __gnu_test;
35
36 std::mt19937 eng;
37
8a1c51c4 38 __gnu_cxx::hypergeometric_distribution<> hd1{15, 3, 2};
d2ae7b11
ESR
39 auto bhd1 = std::bind(hd1, eng);
40 testDiscreteDist(bhd1, [](int k)
41 { return hypergeometric_pdf(k, 15, 3, 2); });
42
8a1c51c4 43 __gnu_cxx::hypergeometric_distribution<> hd2{500, 50, 30};
d2ae7b11
ESR
44 auto bhd2 = std::bind(hd2, eng);
45 testDiscreteDist(bhd2, [](int k)
46 { return hypergeometric_pdf(k, 500, 50, 30); });
47
8a1c51c4 48 __gnu_cxx::hypergeometric_distribution<> hd3{100, 20, 5};
d2ae7b11
ESR
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}