mirror of
https://github.com/boostorg/math.git
synced 2026-02-25 16:32:15 +00:00
34 lines
768 B
C++
34 lines
768 B
C++
/*
|
|
* Copyright Nick Thompson, 2019
|
|
* Use, modification and distribution are subject to 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)
|
|
*/
|
|
|
|
#include "math_unit_test.hpp"
|
|
#include <numeric>
|
|
#include <utility>
|
|
#include <random>
|
|
#include <boost/core/demangle.hpp>
|
|
#include <boost/math/distributions/empirical_cumulative_distribution_function.hpp>
|
|
#ifdef BOOST_HAS_FLOAT128
|
|
#include <boost/multiprecision/float128.hpp>
|
|
using boost::multiprecision::float128;
|
|
#endif
|
|
|
|
using boost::math::distributions::empirical_cumulative_distribution_function;
|
|
|
|
template<class Real>
|
|
void test_uniform()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
int main()
|
|
{
|
|
|
|
test_uniform<float>();
|
|
return boost::math::test::report_errors();
|
|
}
|