test_triangle.cpp 886 B

1234567891011121314151617181920212223242526
  1. /* test_triangle.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. #include <boost/random/triangle_distribution.hpp>
  12. #include <boost/random/uniform_real.hpp>
  13. #include <boost/math/distributions/triangular.hpp>
  14. #define BOOST_RANDOM_DISTRIBUTION boost::random::triangle_distribution<>
  15. #define BOOST_RANDOM_DISTRIBUTION_NAME lognormal
  16. #define BOOST_MATH_DISTRIBUTION boost::math::triangular
  17. #define BOOST_RANDOM_ARG1_TYPE double
  18. #define BOOST_RANDOM_ARG1_NAME b
  19. #define BOOST_RANDOM_ARG1_DEFAULT 0.5
  20. #define BOOST_RANDOM_ARG1_DISTRIBUTION(n) boost::uniform_real<>(0.0001, 0.9999)
  21. #define BOOST_RANDOM_DISTRIBUTION_INIT (0.0, b, 1.0)
  22. #define BOOST_MATH_DISTRIBUTION_INIT (0.0, b, 1.0)
  23. #include "test_real_distribution.ipp"