// Copyright Nick Thompson, 2017 // 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) #define BOOST_TEST_MODULE test_cubic_b_spline #include #include #include #include #include #include #include #include #include using boost::multiprecision::cpp_bin_float_50; using boost::math::constants::third; using boost::math::constants::half; template void test_b3_spline() { std::cout << "Testing evaluation of spline basis functions on type " << boost::typeindex::type_id().pretty_name() << "\n"; // Outside the support: Real eps = std::numeric_limits::epsilon(); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline(2.5), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline(-2.5), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline_prime(2.5), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline_prime(-2.5), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline_double_prime(2.5), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline_double_prime(-2.5), (Real) 0); // On the boundary of support: BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline(2), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline(-2), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline_prime(2), (Real) 0); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline_prime(-2), (Real) 0); // Special values: BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline(-1), third()*half(), eps); BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline( 1), third()*half(), eps); BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline(0), 2*third(), eps); BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline_prime(-1), half(), eps); BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline_prime( 1), -half(), eps); BOOST_CHECK_SMALL(boost::math::interpolators::detail::b3_spline_prime(0), eps); // Properties: B3 is an even function, B3' is an odd function. for (size_t i = 1; i < 200; ++i) { Real arg = i*0.01; BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline(arg), boost::math::interpolators::detail::b3_spline(arg), eps); BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline_prime(-arg), -boost::math::interpolators::detail::b3_spline_prime(arg), eps); BOOST_CHECK_CLOSE(boost::math::interpolators::detail::b3_spline_double_prime(-arg), boost::math::interpolators::detail::b3_spline_double_prime(arg), eps); } } /* * This test ensures that the interpolant s(x_j) = f(x_j) at all grid points. */ template void test_interpolation_condition() { using std::sqrt; std::cout << "Testing interpolation condition for cubic b splines on type " << boost::typeindex::type_id().pretty_name() << "\n"; std::random_device rd; std::mt19937 gen(rd()); boost::random::uniform_real_distribution dis(1, 10); std::vector v(5000); for (size_t i = 0; i < v.size(); ++i) { v[i] = dis(gen); } Real step = 0.01; Real a = 5; boost::math::interpolators::cardinal_cubic_b_spline spline(v.data(), v.size(), a, step); for (size_t i = 0; i < v.size(); ++i) { Real y = spline(i*step + a); // This seems like a very large tolerance, but I don't know of any other interpolators // that will be able to do much better on random data. BOOST_CHECK_CLOSE(y, v[i], 10000*sqrt(std::numeric_limits::epsilon())); } } template void test_constant_function() { std::cout << "Testing that constants are interpolated correctly by cubic b splines on type " << boost::typeindex::type_id().pretty_name() << "\n"; std::vector v(500); Real constant = 50.2; for (size_t i = 0; i < v.size(); ++i) { v[i] = 50.2; } Real step = 0.02; Real a = 5; boost::math::interpolators::cardinal_cubic_b_spline spline(v.data(), v.size(), a, step); for (size_t i = 0; i < v.size(); ++i) { // Do not test at interpolation point; we already know it works there: Real y = spline(i*step + a + 0.001); BOOST_CHECK_CLOSE(y, constant, 10*std::numeric_limits::epsilon()); Real y_prime = spline.prime(i*step + a + 0.002); BOOST_CHECK_SMALL(y_prime, 5000*std::numeric_limits::epsilon()); Real y_double_prime = spline.double_prime(i*step + a + 0.002); BOOST_CHECK_SMALL(y_double_prime, 5000*std::numeric_limits::epsilon()); } // Test that correctly specified left and right-derivatives work properly: spline = boost::math::interpolators::cardinal_cubic_b_spline(v.data(), v.size(), a, step, 0, 0); for (size_t i = 0; i < v.size(); ++i) { Real y = spline(i*step + a + 0.002); BOOST_CHECK_CLOSE(y, constant, std::numeric_limits::epsilon()); Real y_prime = spline.prime(i*step + a + 0.002); BOOST_CHECK_SMALL(y_prime, std::numeric_limits::epsilon()); } // // Again with iterator constructor: // boost::math::interpolators::cardinal_cubic_b_spline spline2(v.begin(), v.end(), a, step); for (size_t i = 0; i < v.size(); ++i) { // Do not test at interpolation point; we already know it works there: Real y = spline2(i*step + a + 0.001); BOOST_CHECK_CLOSE(y, constant, 10 * std::numeric_limits::epsilon()); Real y_prime = spline2.prime(i*step + a + 0.002); BOOST_CHECK_SMALL(y_prime, 5000 * std::numeric_limits::epsilon()); } // Test that correctly specified left and right-derivatives work properly: spline2 = boost::math::interpolators::cardinal_cubic_b_spline(v.begin(), v.end(), a, step, 0, 0); for (size_t i = 0; i < v.size(); ++i) { Real y = spline2(i*step + a + 0.002); BOOST_CHECK_CLOSE(y, constant, std::numeric_limits::epsilon()); Real y_prime = spline2.prime(i*step + a + 0.002); BOOST_CHECK_SMALL(y_prime, std::numeric_limits::epsilon()); } } template void test_affine_function() { using std::sqrt; std::cout << "Testing that affine functions are interpolated correctly by cubic b splines on type " << boost::typeindex::type_id().pretty_name() << "\n"; std::vector v(500); Real a = 10; Real b = 8; Real step = 0.005; auto f = [a, b](Real x) { return a*x + b; }; for (size_t i = 0; i < v.size(); ++i) { v[i] = f(i*step); } boost::math::interpolators::cardinal_cubic_b_spline spline(v.data(), v.size(), 0, step); for (size_t i = 0; i < v.size() - 1; ++i) { Real arg = i*step + 0.0001; Real y = spline(arg); BOOST_CHECK_CLOSE(y, f(arg), sqrt(std::numeric_limits::epsilon())); Real y_prime = spline.prime(arg); BOOST_CHECK_CLOSE(y_prime, a, 100*sqrt(std::numeric_limits::epsilon())); } // Test that correctly specified left and right-derivatives work properly: spline = boost::math::interpolators::cardinal_cubic_b_spline(v.data(), v.size(), 0, step, a, a); for (size_t i = 0; i < v.size() - 1; ++i) { Real arg = i*step + 0.0001; Real y = spline(arg); BOOST_CHECK_CLOSE(y, f(arg), sqrt(std::numeric_limits::epsilon())); Real y_prime = spline.prime(arg); BOOST_CHECK_CLOSE(y_prime, a, 100*sqrt(std::numeric_limits::epsilon())); } } template void test_quadratic_function() { using std::sqrt; std::cout << "Testing that quadratic functions are interpolated correctly by cubic b splines on type " << boost::typeindex::type_id().pretty_name() << "\n"; std::vector v(500); Real a = 1.2; Real b = -3.4; Real c = -8.6; Real step = 0.01; auto f = [a, b, c](Real x) { return a*x*x + b*x + c; }; for (size_t i = 0; i < v.size(); ++i) { v[i] = f(i*step); } boost::math::interpolators::cardinal_cubic_b_spline spline(v.data(), v.size(), 0, step); for (size_t i = 0; i < v.size() -1; ++i) { Real arg = i*step + 0.001; Real y = spline(arg); BOOST_CHECK_CLOSE(y, f(arg), 0.1); Real y_prime = spline.prime(arg); BOOST_CHECK_CLOSE(y_prime, 2*a*arg + b, 2.0); } } template void test_trig_function() { std::cout << "Testing that sine functions are interpolated correctly by cubic b splines on type " << boost::typeindex::type_id().pretty_name() << "\n"; std::mt19937 gen; std::vector v(500); Real x0 = 1; Real step = 0.125; for (size_t i = 0; i < v.size(); ++i) { v[i] = sin(x0 + step * i); } boost::math::interpolators::cardinal_cubic_b_spline spline(v.data(), v.size(), x0, step); boost::random::uniform_real_distribution absissa(x0, x0 + 499 * step); for (size_t i = 0; i < v.size(); ++i) { Real x = absissa(gen); Real y = spline(x); BOOST_CHECK_CLOSE(y, sin(x), 1.0); auto y_prime = spline.prime(x); BOOST_CHECK_CLOSE(y_prime, cos(x), 2.0); } } template void test_copy_move() { std::cout << "Testing that copy/move operation succeed on cubic b spline\n"; std::vector v(500); Real x0 = 1; Real step = 0.125; for (size_t i = 0; i < v.size(); ++i) { v[i] = sin(x0 + step * i); } boost::math::interpolators::cardinal_cubic_b_spline spline(v.data(), v.size(), x0, step); // Default constructor should compile so that splines can be member variables: boost::math::interpolators::cardinal_cubic_b_spline d; d = boost::math::interpolators::cardinal_cubic_b_spline(v.data(), v.size(), x0, step); BOOST_CHECK_CLOSE(d(x0), sin(x0), 0.01); // Passing to lambda should compile: auto f = [=](Real x) { return d(x); }; // Make sure this variable is used. BOOST_CHECK_CLOSE(f(x0), sin(x0), 0.01); // Move operations should compile. auto s = std::move(spline); // Copy operations should compile: boost::math::interpolators::cardinal_cubic_b_spline c = d; BOOST_CHECK_CLOSE(c(x0), sin(x0), 0.01); // Test with std::bind: auto h = std::bind(&boost::math::interpolators::cardinal_cubic_b_spline::operator(), &s, std::placeholders::_1); BOOST_CHECK_CLOSE(h(x0), sin(x0), 0.01); } template void test_outside_interval() { std::cout << "Testing that the spline can be evaluated outside the interpolation interval\n"; std::vector v(400); Real x0 = 1; Real step = 0.125; for (size_t i = 0; i < v.size(); ++i) { v[i] = sin(x0 + step * i); } boost::math::interpolators::cardinal_cubic_b_spline spline(v.data(), v.size(), x0, step); // There's no test here; it simply does it's best to be an extrapolator. // std::ostream cnull(0); cnull << spline(0); cnull << spline(2000); } BOOST_AUTO_TEST_CASE(test_cubic_b_spline) { test_b3_spline(); test_b3_spline(); test_b3_spline(); test_b3_spline(); test_interpolation_condition(); test_interpolation_condition(); test_interpolation_condition(); test_interpolation_condition(); test_constant_function(); test_constant_function(); test_constant_function(); test_constant_function(); test_affine_function(); test_affine_function(); test_affine_function(); test_affine_function(); test_quadratic_function(); test_quadratic_function(); test_quadratic_function(); test_affine_function(); test_trig_function(); test_trig_function(); test_trig_function(); test_trig_function(); test_copy_move(); test_outside_interval(); }