2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-25 18:32:08 +00:00
Files
math/test/compile_test/numerical_differentiation_incl_test.cpp
2017-05-18 18:23:01 -06:00

25 lines
858 B
C++

// 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)
//
// Basic sanity check that header <boost/math/special_functions/gamma.hpp>
// #includes all the files that it needs to.
//
#include <boost/math/tools/numerical_differentiation.hpp>
//
// Note this header includes no other headers, this is
// important if this test is to be meaningful:
//
#include "test_compile_result.hpp"
void compile_and_link_test()
{
auto f = [](double x) { return x; };
double x = 0;
check_result<double>(boost::math::tools::finite_difference_derivative(f, x));
auto g = [](std::complex<double> x){ return x;};
check_result<double>(boost::math::tools::complex_step_derivative(g, x));
}