From aff668f28c8f096cc4eb351b0f74cd5bcb69cdec Mon Sep 17 00:00:00 2001 From: Nick Thompson Date: Thu, 21 Feb 2019 10:16:35 -0700 Subject: [PATCH] Remove long double and multiprecision tests so build unbreaks. --- test/test_numerical_differentiation.cpp | 35 +++---------------------- 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/test/test_numerical_differentiation.cpp b/test/test_numerical_differentiation.cpp index d49a75daa..c6fb46d81 100644 --- a/test/test_numerical_differentiation.cpp +++ b/test/test_numerical_differentiation.cpp @@ -11,8 +11,6 @@ #include #include #include -#include -#include #include #include #include @@ -25,11 +23,6 @@ using boost::math::differentiation::complex_step_derivative; using boost::math::cyl_bessel_j; using boost::math::cyl_bessel_j_prime; using boost::math::constants::half; -using boost::multiprecision::cpp_dec_float_100; -using boost::multiprecision::cpp_bin_float_50; -using boost::multiprecision::cpp_bin_float_100; -using boost::multiprecision::cpp_bin_float_quad; - template void test_order(size_t points_to_test) @@ -227,46 +220,26 @@ BOOST_AUTO_TEST_CASE(numerical_differentiation_test) { test_complex_step(); test_complex_step(); -#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS - test_complex_step(); -#endif + test_bessel(); test_bessel(); -#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS - test_bessel(); -#endif - test_bessel(); + size_t points_to_test = 1000; test_order(points_to_test); test_order(points_to_test); -#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS - test_order(points_to_test); -#endif - test_order(points_to_test); + test_order(points_to_test); test_order(points_to_test); -#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS - test_order(points_to_test); -#endif - test_order(points_to_test); test_order(points_to_test); test_order(points_to_test); -#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS - test_order(points_to_test); -#endif test_order(points_to_test); test_order(points_to_test); -#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS - test_order(points_to_test); -#endif test_order(points_to_test); test_order(points_to_test); -#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS - test_order(points_to_test); -#endif + }