diff options
Diffstat (limited to 'libs/random/test/test_non_central_chi_squared.cpp')
-rw-r--r-- | libs/random/test/test_non_central_chi_squared.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libs/random/test/test_non_central_chi_squared.cpp b/libs/random/test/test_non_central_chi_squared.cpp new file mode 100644 index 000000000..914b7752e --- /dev/null +++ b/libs/random/test/test_non_central_chi_squared.cpp @@ -0,0 +1,29 @@ +/* test_non_central_chi_squared.cpp + * + * Copyright Steven Watanabe 2011 + * Copyright Thijs van den Berg 2014 + * Distributed under the Boost Software License, Version 1.0. (See + * accompanying file LICENSE_1_0.txt or copy at + * http://www.boost.org/LICENSE_1_0.txt) + * + * $Id$ + * + */ + +#include <boost/random/non_central_chi_squared_distribution.hpp> +#include <boost/random/uniform_real.hpp> +#include <boost/math/distributions/non_central_chi_squared.hpp> + +#define BOOST_RANDOM_DISTRIBUTION boost::random::non_central_chi_squared_distribution<> +#define BOOST_RANDOM_DISTRIBUTION_NAME non_central_chi_squared +#define BOOST_MATH_DISTRIBUTION boost::math::non_central_chi_squared +#define BOOST_RANDOM_ARG1_TYPE double +#define BOOST_RANDOM_ARG1_NAME k +#define BOOST_RANDOM_ARG1_DEFAULT 1000.0 +#define BOOST_RANDOM_ARG1_DISTRIBUTION(k) boost::uniform_real<>(0.00001, k) +#define BOOST_RANDOM_ARG2_TYPE double +#define BOOST_RANDOM_ARG2_NAME lambda +#define BOOST_RANDOM_ARG2_DEFAULT 1000.0 +#define BOOST_RANDOM_ARG2_DISTRIBUTION(lambda) boost::uniform_real<>(0.00001, lambda) + +#include "test_real_distribution.ipp" |