2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-21 15:12:28 +00:00

Add missing using declaration to test case. [CI SKIP]

This commit is contained in:
jzmaddock
2019-07-27 12:01:06 +01:00
parent b0d3662ab6
commit cd142eacb8

View File

@@ -104,6 +104,8 @@ void check_pFq_result(const T& result, const T& norm, const T& expect, const std
template <class T>
void test_spots_1F0(T, const char*)
{
using std::pow;
T tolerance = boost::math::tools::epsilon<T>() * 1000;
BOOST_CHECK_CLOSE(boost::math::hypergeometric_pFq({ T(-3) }, {}, T(2)), T(-1), tolerance);