]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/operators/values.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / random / discrete_distribution / operators / values.cc
1 // { dg-do run { target c++11 } }
2 // { dg-require-cstdint "" }
3 //
4 // Copyright (C) 2011-2024 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
20
21 // 26.5.8.6.1 Class template discrete_distribution [rand.dist.samp.discrete]
22
23 #include <random>
24 #include <functional>
25 #include <testsuite_random.h>
26
27 // { dg-additional-options "-DSIMULATOR_TEST" { target simulator } }
28
29 #ifdef SIMULATOR_TEST
30 # define ARGS 100, 1000
31 #else
32 # define ARGS
33 #endif
34
35 void test01()
36 {
37 using namespace __gnu_test;
38
39 std::mt19937 eng;
40
41 std::discrete_distribution<> dd1({ });
42 auto bdd1 = std::bind(dd1, eng);
43 testDiscreteDist(bdd1, [](int n) { return discrete_pdf(n, { }); } );
44
45 std::discrete_distribution<> dd2({ 1.0, 3.0, 2.0});
46 auto bdd2 = std::bind(dd2, eng);
47 testDiscreteDist(bdd2, [](int n)
48 { return discrete_pdf(n, { 1.0, 3.0, 2.0}); } );
49
50 std::discrete_distribution<> dd3({ 2.0, 2.0, 1.0, 0.0, 4.0});
51 auto bdd3 = std::bind(dd3, eng);
52 testDiscreteDist(bdd3, [](int n)
53 { return discrete_pdf(n, { 2.0, 2.0, 1.0, 0.0, 4.0}); } );
54 }
55
56 int main()
57 {
58 test01();
59 return 0;
60 }