2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-30 08:02:11 +00:00
Files
math/test/compile_test/sf_binomial_incl_test.cpp

14 lines
652 B
C++

// Copyright John Maddock 2006.
// 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/binomial.hpp>
// #includes all the files that it needs to.
//
#include <boost/math/special_functions/binomial.hpp>
template float boost::math::binomial_coefficient<float>(unsigned, unsigned);
template double boost::math::binomial_coefficient<double>(unsigned, unsigned);
template long double boost::math::binomial_coefficient<long double>(unsigned, unsigned);