• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* test_old_uniform_int.cpp
2  *
3  * Copyright Steven Watanabe 2011
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/uniform_int.hpp>
13 #include <boost/math/distributions/uniform.hpp>
14 
15 #define BOOST_RANDOM_DISTRIBUTION boost::uniform_int<>
16 #define BOOST_RANDOM_DISTRIBUTION_NAME uniform_int
17 #define BOOST_MATH_DISTRIBUTION boost::math::uniform
18 #define BOOST_RANDOM_ARG1_TYPE int
19 #define BOOST_RANDOM_ARG1_NAME b
20 #define BOOST_RANDOM_ARG1_DEFAULT 1000
21 #define BOOST_RANDOM_ARG1_DISTRIBUTION(n) boost::uniform_int<>(0, n)
22 #define BOOST_RANDOM_DISTRIBUTION_INIT (0, b)
23 #define BOOST_MATH_DISTRIBUTION_INIT (0, b+1)
24 #define BOOST_RANDOM_DISTRIBUTION_MAX b
25 
26 #include "test_real_distribution.ipp"
27