2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-13 00:22:23 +00:00

Add Laplace and Mellin transform test so that 1F1 is tested over its entire domain.

This commit is contained in:
Nick Thompson
2018-10-23 10:23:23 -06:00
parent 1791a4b597
commit 60edddae72
3 changed files with 56 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
inline T hypergeometric_1F1_asym_positive_series(const T& a, const T& b, const T& z, const Policy& pol)
{
BOOST_MATH_STD_USING
static const char* const function = "boost::math::hypergeometric_1F1_asym_positive_series<%1%>(%1%,%1%,%1%)";
//static const char* const function = "boost::math::hypergeometric_1F1_asym_positive_series<%1%>(%1%,%1%,%1%)";
const bool is_a_integer = (a == floor(a));
const bool is_b_integer = (b == floor(b));
@@ -42,7 +42,7 @@
inline T hypergeometric_1F1_asym_negative_series(const T& a, const T& b, const T& z, const Policy& pol)
{
BOOST_MATH_STD_USING
static const char* const function = "boost::math::hypergeometric_1F1_asym_negative_series<%1%>(%1%,%1%,%1%)";
//static const char* const function = "boost::math::hypergeometric_1F1_asym_negative_series<%1%>(%1%,%1%,%1%)";
const T b_minus_a = b - a;