]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/math/test/compile_test/interpolators_catmull_rom_concept_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / interpolators_catmull_rom_concept_test.cpp
1 // Copyright Nick Thompson 2018.
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 //
6
7 #include <boost/math/tools/config.hpp>
8 #include <boost/math/concepts/std_real_concept.hpp>
9 #include <boost/math/interpolators/catmull_rom.hpp>
10
11 void compile_and_link_test()
12 {
13 #ifndef BOOST_MATH_NO_REAL_CONCEPT_TESTS
14 std::vector<boost::math::concepts::std_real_concept> p0{0.1, 0.2, 0.3};
15 std::vector<boost::math::concepts::std_real_concept> p1{0.2, 0.3, 0.4};
16 std::vector<boost::math::concepts::std_real_concept> p2{0.3, 0.4, 0.5};
17 std::vector<boost::math::concepts::std_real_concept> p3{0.4, 0.5, 0.6};
18 std::vector<boost::math::concepts::std_real_concept> p4{0.5, 0.6, 0.7};
19 std::vector<boost::math::concepts::std_real_concept> p5{0.6, 0.7, 0.8};
20 std::vector<std::vector<boost::math::concepts::std_real_concept>> v{p0, p1, p2, p3, p4, p5};
21 boost::math::catmull_rom<std::vector<boost::math::concepts::std_real_concept>> cat(std::move(v));
22 cat(0.0);
23 cat.prime(0.0);
24 #endif
25 }