• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* test_bernoulli_distribution.cpp
2  *
3  * Copyright Steven Watanabe 2010
4  * Distributed under the Boost Software License, Version 1.0. (See
5  * accompanying file LICENSE_1_0.txt or copy at
6  * http://www.boost.org/LICENSE_1_0.txt)
7  *
8  * $Id$
9  *
10  */
11 
12 #include <boost/random/bernoulli_distribution.hpp>
13 
14 #define BOOST_RANDOM_DISTRIBUTION boost::random::bernoulli_distribution<>
15 #define BOOST_RANDOM_ARG1 p
16 #define BOOST_RANDOM_ARG1_DEFAULT 0.5
17 #define BOOST_RANDOM_ARG1_VALUE 0.25
18 
19 #define BOOST_RANDOM_DIST0_MIN false
20 #define BOOST_RANDOM_DIST0_MAX true
21 #define BOOST_RANDOM_DIST1_MIN false
22 #define BOOST_RANDOM_DIST1_MAX true
23 
24 #define BOOST_RANDOM_TEST1_PARAMS (0.0)
25 #define BOOST_RANDOM_TEST1_MIN false
26 #define BOOST_RANDOM_TEST1_MAX false
27 
28 #define BOOST_RANDOM_TEST2_PARAMS (1.0)
29 #define BOOST_RANDOM_TEST2_MIN true
30 #define BOOST_RANDOM_TEST2_MAX true
31 
32 #include "test_distribution.ipp"
33