test_beta.cpp 962 B

12345678910111213141516171819202122232425262728
  1. /* test_beta.cpp
  2. *
  3. * Copyright Steven Watanabe 2014
  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. #include <boost/random/beta_distribution.hpp>
  12. #include <boost/random/uniform_real.hpp>
  13. #include <boost/math/distributions/beta.hpp>
  14. #define BOOST_RANDOM_DISTRIBUTION boost::random::beta_distribution<>
  15. #define BOOST_RANDOM_DISTRIBUTION_NAME beta
  16. #define BOOST_MATH_DISTRIBUTION boost::math::beta_distribution<>
  17. #define BOOST_RANDOM_ARG1_TYPE double
  18. #define BOOST_RANDOM_ARG1_NAME alpha
  19. #define BOOST_RANDOM_ARG1_DEFAULT 1000.0
  20. #define BOOST_RANDOM_ARG1_DISTRIBUTION(n) boost::uniform_real<>(0.00001, n)
  21. #define BOOST_RANDOM_ARG2_TYPE double
  22. #define BOOST_RANDOM_ARG2_NAME beta
  23. #define BOOST_RANDOM_ARG2_DEFAULT 1000.0
  24. #define BOOST_RANDOM_ARG2_DISTRIBUTION(n) boost::uniform_real<>(0.00001, n)
  25. #include "test_real_distribution.ipp"