]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/math/test/compile_test/diff_numerical_differentiation_concept_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / diff_numerical_differentiation_concept_test.cpp
CommitLineData
11fdf7f2
TL
1// Copyright Nick Thompson 2017.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5//
1e59de90
TL
6
7#ifndef BOOST_MATH_STANDALONE
8
11fdf7f2 9#include <boost/math/concepts/std_real_concept.hpp>
92f5a8d4 10#include <boost/math/differentiation/finite_difference.hpp>
11fdf7f2 11
11fdf7f2
TL
12void compile_and_link_test()
13{
14 boost::math::concepts::std_real_concept x = 0;
15 auto f = [](boost::math::concepts::std_real_concept x) { return x; };
92f5a8d4 16 boost::math::differentiation::finite_difference_derivative(f, x);
11fdf7f2 17}
1e59de90
TL
18
19#endif