2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Update error rates in docs [CI SKIP]

This commit is contained in:
John Maddock
2018-03-08 16:42:47 +00:00
parent db9a784005
commit 4dcdbc2a2a
4 changed files with 7651 additions and 18073 deletions

View File

@@ -216,7 +216,7 @@ inline double ellintP(double a, double b) { return gsl_sf_ellint_Pcomp(a, -b, GS
inline double ellintF(double a, double b) { return gsl_sf_ellint_F(b, a, GSL_PREC_DOUBLE); }
inline double ellintE2(double a, double b) { return gsl_sf_ellint_E(b, a, GSL_PREC_DOUBLE); }
inline double ellintP3(double a, double b, double c) { return gsl_sf_ellint_P(c, a, -b, GSL_PREC_DOUBLE); }
inline double ellintD2(double a, double b) { return gsl_sf_ellint_D(b, a, 0.0, GSL_PREC_DOUBLE); }
inline double ellintD2(double a, double b) { return gsl_sf_ellint_D(b, a, GSL_PREC_DOUBLE); }
#define ELLINT_1_FUNCTION_TO_TEST ellintF
#define ELLINT_1C_FUNCTION_TO_TEST ellintK

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -1572,8 +1572,9 @@ void test_powm1_sqrtp1m1(T, const char* type_name)
func_t f = &boost::math::sqrt1pm1<T>;
#endif
boost::math::tools::test_result<T> result;
#if !(defined(ERROR_REPORTING_MODE) && !defined(SQRT1PM1_FUNCTION_TO_TEST))
boost::math::tools::test_result<T> result = boost::math::tools::test_hetero<T>(
result = boost::math::tools::test_hetero<T>(
sqrtp1m1_data,
bind_func<T>(f, 0),
extract_result<T>(1));
@@ -1583,7 +1584,6 @@ void test_powm1_sqrtp1m1(T, const char* type_name)
handle_test_result(result, sqrtp1m1_data[result.worst()], result.worst(), type_name, "sqrt1pm1", "sqrt1pm1");
#endif
#if !(defined(ERROR_REPORTING_MODE) && !defined(POWM1_FUNCTION_TO_TEST))
typedef T (*func2_t)(T const, T const);
#ifdef POWM1_FUNCTION_TO_TEST
@@ -1591,6 +1591,7 @@ void test_powm1_sqrtp1m1(T, const char* type_name)
#else
func2_t f2 = &boost::math::powm1<T,T>;
#endif
#if !(defined(ERROR_REPORTING_MODE) && !defined(POWM1_FUNCTION_TO_TEST))
result = boost::math::tools::test_hetero<T>(
powm1_data,
bind_func<T>(f2, 0, 1),