]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/math/test/compile_test/numerical_differentiation_concept_test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / numerical_differentiation_concept_test.cpp
index edf1dfa3d026ced2116a7b35ad2f499374ba575e..7fcb898b8f64dd51ef18274f33f78f5c8f2fc829 100644 (file)
@@ -4,12 +4,12 @@
 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 //
 #include <boost/math/concepts/std_real_concept.hpp>
-#include <boost/math/tools/numerical_differentiation.hpp>
+#include <boost/math/differentiation/finite_difference.hpp>
 
 
 void compile_and_link_test()
 {
    boost::math::concepts::std_real_concept x = 0;
    auto f = [](boost::math::concepts::std_real_concept x) { return x; };
-   boost::math::tools::finite_difference_derivative(f, x);
+   boost::math::differentiation::finite_difference_derivative(f, x);
 }