boost/libs/math/test/compile_test/daubechies_scaling_incl_test.cpp
2021-10-05 21:37:46 +02:00

22 lines
709 B
C++

// Copyright Nick Thompson 2020.
// 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/special_functions/daubechies_scaling.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()
{
double x = 0;
auto daub3 = boost::math::daubechies_scaling<double, 3>(5);
check_result<double>(daub3(x));
}