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:
@@ -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
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user