diff --git a/doc/differentiation/autodiff_reverse.qbk b/doc/differentiation/autodiff_reverse.qbk index 9c0ca7e38..8db678037 100644 --- a/doc/differentiation/autodiff_reverse.qbk +++ b/doc/differentiation/autodiff_reverse.qbk @@ -241,11 +241,12 @@ Some key points about reverse mode automatic differentiation: [[ldexp] [expression, &int] [ x*pow(2,int) ] [expression] [pow(2,int)] []] ] [h1:table-of-specfuns Specfun Support] + [table [[Function] [compiles with ET ON] [runs with ET ON] [compiles with ET OFF] [runs with ET OFF] [works with multiprecision] [known issues]] -[[tgamma] [YES] [YES] [YES] [YES] [NO] [derivatives incorrect for integer arguments]] +[[tgamma] [YES] [YES] [YES] [YES] [NO] [N/A]] [[tgamma1pm1] [NO] [N/A] [YES] [YES] [NO] [N/A]] [[lgamma] [YES] [YES] [YES] [YES] [NO] [N/A]] [[digamma] [YES] [YES] [YES] [YES] [NO] [N/A]] @@ -269,9 +270,9 @@ Some key points about reverse mode automatic differentiation: [[ibeta_invb] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[ibetac_invb] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[ibeta_derivative] [NO] [N/A] [NO] [N/A] [NO] [N/A]] -[[legendre_p] [NO] [N/A] [YES] [NO] [NO] [N/A]] -[[legendre_p_prime] [YES] [NO] [YES] [NO] [NO] [N/A]] -[[legendre_q] [NO] [N/A] [YES] [NO] [NO] [N/A]] +[[legendre_p] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[legendre_p_prime] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[legendre_q] [NO] [N/A] [YES] [YES] [NO] [N/A]] [[laguerre] [YES] [YES] [YES] [YES] [NO] [N/A]] [[hermite] [YES] [YES] [YES] [YES] [NO] [N/A]] [[chebyshev_t] [YES] [YES] [YES] [YES] [NO] [N/A]] @@ -292,7 +293,7 @@ Some key points about reverse mode automatic differentiation: [[cyl_bessel_i] [NO] [N/A] [YES] [YES] [NO] [N/A]] [[cyl_bessel_k] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[sph_bessel] [NO] [N/A] [YES] [YES] [NO] [N/A]] -[[sph_neumann] [NO] [N/A] [YES] [NO] [NO] [N/A]] +[[sph_neumann] [NO] [N/A] [YES] [YES] [NO] [N/A]] [[cyl_bessel_j_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[cyl_neumann_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[cyl_bessel_i_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] @@ -305,8 +306,8 @@ Some key points about reverse mode automatic differentiation: [[sph_hankel_2] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[airy_ai] [NO] [N/A] [YES] [YES] [NO] [N/A]] [[airy_bi] [NO] [N/A] [YES] [YES] [NO] [N/A]] -[[airy_ai_prime] [NO] [N/A] [YES] [NO] [NO] [N/A]] -[[airy_bi_prime] [NO] [N/A] [YES] [NO] [NO] [N/A]] +[[airy_ai_prime] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[airy_bi_prime] [NO] [N/A] [YES] [YES] [NO] [N/A]] [[ellint_rf] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[ellint_rd] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[ellint_rj] [NO] [N/A] [NO] [N/A] [NO] [N/A]] @@ -354,7 +355,7 @@ Some key points about reverse mode automatic differentiation: [[hypergeometric_1F1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] [[sin_pi] [YES] [YES] [YES] [YES] [NO] [N/A]] [[cos_pi] [YES] [YES] [YES] [YES] [NO] [N/A]] -[[log1p] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[log1p] [YES] [NO] [YES] [NO] [NO] [N/A]] [[expm1] [YES] [YES] [YES] [YES] [NO] [N/A]] [[cbrt] [YES] [YES] [YES] [YES] [NO] [N/A]] [[sqrt1pm1] [NO] [N/A] [YES] [YES] [NO] [N/A]] @@ -705,9 +706,10 @@ When in doubt, its always preferrable to compute higher order derivatives with: auto g4 = grad_nd<4>(f, &x,&y,&z) [h2:expression-templates-and-auto Expression Templates and auto] -Reverse mode autodiff is expression template based by default. If you'd like to disable expression templates (for debugging, benchmarking, or simplify integration with other systems), you must define the following macro at compile time: +Reverse mode autodiff is expression template (`BOOST_MATH_REVERSE_MODE_ET_ON`) based by default. If you'd like to disable expression templates (for debugging, benchmarking, or simplify integration with other systems), you must define the following macro at compile time: #define BOOST_MATH_REVERSE_MODE_ET_OFF + #include or pass it to the compiler via flag diff --git a/doc/differentiation/compilation_table.txt b/doc/differentiation/compilation_table.txt index 671d26946..1311f5692 100644 --- a/doc/differentiation/compilation_table.txt +++ b/doc/differentiation/compilation_table.txt @@ -1,126 +1,126 @@ [table -[Function] [compiles with ET ON] [runs with ET ON] [compiles with ET OFF] [runs with ET OFF] [works with multiprecision] [known issues] +[[Function] [compiles with ET ON] [runs with ET ON] [compiles with ET OFF] [runs with ET OFF] [works with multiprecision] [known issues]] -[tgamma] [YES] [YES] [YES] [YES] [NO] [N/A] -[tgamma1pm1] [NO] [N/A] [YES] [YES] [NO] [N/A] -[lgamma] [YES] [YES] [YES] [YES] [NO] [N/A] -[digamma] [YES] [YES] [YES] [YES] [NO] [N/A] -[trigamma] [YES] [YES] [YES] [YES] [NO] [N/A] -[polygamma] [NO] [N/A] [YES] [YES] [NO] [N/A] -[tgamma_ratio] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[tgamma_delta_ratio] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[gamma_p] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[gamma_q] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[tgamma_lower] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[rising_factorial] [NO] [N/A] [YES] [YES] [NO] [N/A] -[falling_factorial] [NO] [N/A] [YES] [YES] [NO] [N/A] -[beta] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibeta] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibetac] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[betac] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibeta_inv] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibetac_inv] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibeta_inva] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibetac_inva] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibeta_invb] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibetac_invb] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ibeta_derivative] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[legendre_p] [NO] [N/A] [YES] [NO] [NO] [N/A] -[legendre_p_prime] [YES] [NO] [YES] [NO] [NO] [N/A] -[legendre_q] [NO] [N/A] [YES] [NO] [NO] [N/A] -[laguerre] [YES] [YES] [YES] [YES] [NO] [N/A] -[hermite] [YES] [YES] [YES] [YES] [NO] [N/A] -[chebyshev_t] [YES] [YES] [YES] [YES] [NO] [N/A] -[chebyshev_u] [YES] [YES] [YES] [YES] [NO] [N/A] -[chebyshev_t_prime] [YES] [YES] [YES] [YES] [NO] [N/A] -[shperical_harmonic] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[spherical_harmonic_r] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[spherical_harmonic_i] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[gegenbauer] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[gegenbauer_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[gegenbauer_derivative] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_derivative] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_double_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[cyl_bessel_j] [NO] [N/A] [YES] [YES] [NO] [N/A] -[cyl_neumann] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[cyl_bessel_i] [NO] [N/A] [YES] [YES] [NO] [N/A] -[cyl_bessel_k] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[sph_bessel] [NO] [N/A] [YES] [YES] [NO] [N/A] -[sph_neumann] [NO] [N/A] [YES] [NO] [NO] [N/A] -[cyl_bessel_j_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[cyl_neumann_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[cyl_bessel_i_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[cyl_bessel_k_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[sph_bessel_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[sph_neumann_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[cyl_hankel_1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[cyl_hankel_2] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[sph_hankel_1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[sph_hankel_2] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[airy_ai] [NO] [N/A] [YES] [YES] [NO] [N/A] -[airy_bi] [NO] [N/A] [YES] [YES] [NO] [N/A] -[airy_ai_prime] [NO] [N/A] [YES] [NO] [NO] [N/A] -[airy_bi_prime] [NO] [N/A] [YES] [NO] [NO] [N/A] -[ellint_rf] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_rd] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_rj] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_rc] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_rg] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_2] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_3] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[ellint_d] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_zeta] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[heuman_labda] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_cd] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_cn] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_cs] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_dc] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_dn] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_ds] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_nc] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_nd] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_ns] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_sc] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_sd] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_sn] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta2] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta3] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta3tau] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta3m1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta3m1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta4] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta4tau] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta4m1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[jacobi_theta4m1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[lambert_w0] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[lambert_wm1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[lambert_w0_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[lambert_wm1_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[zeta] [NO] [N/A] [YES] [YES] [NO] [N/A] -[expint] [NO] [N/A] [YES] [YES] [NO] [N/A] -[hypergeometric_1F0] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[hypergeometric_0F1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[hypergeometric_2F0] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[hypergeometric_1F1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[sin_pi] [YES] [YES] [YES] [YES] [NO] [N/A] -[cos_pi] [YES] [YES] [YES] [YES] [NO] [N/A] -[log1p] [YES] [YES] [YES] [YES] [NO] [N/A] -[expm1] [YES] [YES] [YES] [YES] [NO] [N/A] -[cbrt] [YES] [YES] [YES] [YES] [NO] [N/A] -[sqrt1pm1] [NO] [N/A] [YES] [YES] [NO] [N/A] -[powm1] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[hypot] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[rsqrt] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[logaddexp] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[logsumexp] [NO] [N/A] [NO] [N/A] [NO] [N/A] -[sinc_pi] [YES] [YES] [YES] [YES] [NO] [N/A] -[sinhc_pi] [YES] [YES] [YES] [YES] [NO] [N/A] -[owens_t] [NO] [N/A] [NO] [N/A] [NO] [N/A] +[[tgamma] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[tgamma1pm1] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[lgamma] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[digamma] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[trigamma] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[polygamma] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[tgamma_ratio] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[tgamma_delta_ratio] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[gamma_p] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[gamma_q] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[tgamma_lower] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[rising_factorial] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[falling_factorial] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[beta] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibeta] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibetac] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[betac] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibeta_inv] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibetac_inv] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibeta_inva] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibetac_inva] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibeta_invb] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibetac_invb] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ibeta_derivative] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[legendre_p] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[legendre_p_prime] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[legendre_q] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[laguerre] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[hermite] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[chebyshev_t] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[chebyshev_u] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[chebyshev_t_prime] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[shperical_harmonic] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[spherical_harmonic_r] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[spherical_harmonic_i] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[gegenbauer] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[gegenbauer_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[gegenbauer_derivative] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_derivative] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_double_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[cyl_bessel_j] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[cyl_neumann] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[cyl_bessel_i] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[cyl_bessel_k] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[sph_bessel] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[sph_neumann] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[cyl_bessel_j_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[cyl_neumann_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[cyl_bessel_i_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[cyl_bessel_k_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[sph_bessel_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[sph_neumann_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[cyl_hankel_1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[cyl_hankel_2] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[sph_hankel_1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[sph_hankel_2] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[airy_ai] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[airy_bi] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[airy_ai_prime] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[airy_bi_prime] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[ellint_rf] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_rd] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_rj] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_rc] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_rg] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_2] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_3] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[ellint_d] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_zeta] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[heuman_labda] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_cd] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_cn] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_cs] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_dc] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_dn] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_ds] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_nc] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_nd] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_ns] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_sc] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_sd] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_sn] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta2] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta3] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta3tau] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta3m1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta3m1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta4] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta4tau] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta4m1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[jacobi_theta4m1tau] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[lambert_w0] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[lambert_wm1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[lambert_w0_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[lambert_wm1_prime] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[zeta] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[expint] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[hypergeometric_1F0] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[hypergeometric_0F1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[hypergeometric_2F0] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[hypergeometric_1F1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[sin_pi] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[cos_pi] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[log1p] [YES] [NO] [YES] [NO] [NO] [N/A]] +[[expm1] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[cbrt] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[sqrt1pm1] [NO] [N/A] [YES] [YES] [NO] [N/A]] +[[powm1] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[hypot] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[rsqrt] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[logaddexp] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[logsumexp] [NO] [N/A] [NO] [N/A] [NO] [N/A]] +[[sinc_pi] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[sinhc_pi] [YES] [YES] [YES] [YES] [NO] [N/A]] +[[owens_t] [NO] [N/A] [NO] [N/A] [NO] [N/A]] ] diff --git a/doc/html/math_toolkit/autodiff0.html b/doc/html/math_toolkit/autodiff0.html index 71d588f88..89b360134 100644 --- a/doc/html/math_toolkit/autodiff0.html +++ b/doc/html/math_toolkit/autodiff0.html @@ -2723,7 +2723,7 @@

- NO + YES

@@ -2750,7 +2750,7 @@

- NO + YES

@@ -2760,7 +2760,7 @@

- NO + YES

@@ -2797,7 +2797,7 @@

- NO + YES

@@ -3574,7 +3574,7 @@

- NO + YES

@@ -4055,7 +4055,7 @@

- NO + YES

@@ -4092,7 +4092,7 @@

- NO + YES

@@ -5858,7 +5858,7 @@

- YES + NO

@@ -5868,7 +5868,7 @@

- YES + NO

@@ -6696,9 +6696,10 @@ Templates and auto

- Reverse mode autodiff is expression template based by default. If you'd like - to disable expression templates (for debugging, benchmarking, or simplify integration - with other systems), you must define the following macro at compile time: + Reverse mode autodiff is expression template (BOOST_MATH_REVERSE_MODE_ET_ON) + based by default. If you'd like to disable expression templates (for debugging, + benchmarking, or simplify integration with other systems), you must define + the following macro at compile time:

#define BOOST_MATH_REVERSE_MODE_ET_OFF
 
diff --git a/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_no_et.hpp b/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_no_et.hpp index 21f8cf82a..6a5788710 100644 --- a/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_no_et.hpp +++ b/include/boost/math/differentiation/detail/reverse_mode_autodiff_basic_ops_no_et.hpp @@ -99,7 +99,7 @@ rvar operator-(const expression(arg, static_cast(-v)); + return add_const_expr(arg, -static_cast(v)); } /** @brief diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 3b75aa4c6..d161baebb 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -1079,7 +1079,6 @@ test-suite misc : # [ run __temporary_test.cpp test_instances//test_instances : : : always_show_run_output off ] ; - test-suite interpolators : [ run test_barycentric_rational.cpp /boost/test//boost_unit_test_framework : : : [ requires cxx11_smart_ptr cxx11_defaulted_functions cxx11_auto_declarations cxx11_unified_initialization_syntax ] $(float128_type) ] [ run test_vector_barycentric_rational.cpp /boost/test//boost_unit_test_framework : : : [ requires cxx11_smart_ptr cxx11_defaulted_functions cxx11_auto_declarations cxx11_unified_initialization_syntax ] [ check-target-builds ../../multiprecision/config//has_eigen : : no ] ] @@ -1113,7 +1112,7 @@ test-suite interpolators : [ run compile_test/interpolators_catmull_rom_concept_test.cpp compile_test_main : : : [ requires cxx11_hdr_array cxx11_hdr_initializer_list ] ] [ run test_standalone_asserts.cpp ] [ run differential_evolution_test.cpp : : : [ requires cxx17_if_constexpr cxx17_std_apply ] ] - [ run jso_test.cpp : : : clang:-fno-fast-math gcc:-fno-fast-math msvc:/fp:precise [ requires cxx17_if_constexpr cxx17_std_apply ] ] + [ run jso_test.cpp : : : clang:-fno-fast-math gcc:-fno-fast-math msvc:"/fp:precise" [ requires cxx17_if_constexpr cxx17_std_apply ] ] [ run random_search_test.cpp : : : [ requires cxx17_if_constexpr cxx17_std_apply ] ] [ run cma_es_test.cpp : : : [ requires cxx17_if_constexpr cxx17_std_apply ] [ check-target-builds ../../multiprecision/config//has_eigen : : no ] ] [ compile compile_test/random_search_incl_test.cpp : [ requires cxx17_if_constexpr cxx17_std_apply ] ] @@ -1359,12 +1358,502 @@ test-suite autodiff : [ compile compile_test/diff_finite_difference_incl_test.cpp : gcc-mingw:-Wa,-mbig-obj off msvc:/bigobj release $(float128_type) [ check-target-builds ../config//is_cygwin_run "Cygwin CI run" : no ] [ requires cxx11_inline_namespaces ] ] [ compile compile_test/diff_lanczos_smoothing_incl_test.cpp : gcc-mingw:-Wa,-mbig-obj off msvc:/bigobj release [ requires cxx17_if_constexpr cxx17_std_apply ] $(float128_type) [ check-target-builds ../config//is_cygwin_run "Cygwin CI run" : no ] [ requires cxx11_inline_namespaces ] ] ; - -test-suite autodiff_reverse_specific : - # This rule compiles and runs your specific test file. - # The arguments replicate the common settings for Boost.Math tests. - [ run my_autodiff_reverse_test.cpp /boost/test//boost_unit_test_framework : : : gcc-mingw:-Wa,-mbig-obj off msvc:/bigobj release $(float128_type) [ check-target-builds ../config//is_cygwin_run "Cygwin CI run" : no ] [ requires cxx11_inline_namespaces ] ] -; +test-suite test_reverse_mode_autodiff + : + [ run test_reverse_mode_autodiff_flat_linear_allocator.cpp ] + [ run test_reverse_mode_autodiff_constructors.cpp ] + [ run test_reverse_mode_autodiff_comparison_operators.cpp ] + [ run test_reverse_mode_autodiff_stl_support.cpp ] + [ run test_reverse_mode_autodiff_basic_math_ops.cpp ] + [ run test_reverse_mode_autodiff_error_functions.cpp ] + ; +test-suite autodiff-long-running-tests + : + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp ] + [ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp ] + [ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp ] + [ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp ] + [ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp ] + [ run-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp ] + [ run-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp ] + [ run-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp ] + [ run test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp ] + [ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp ] + ; # # These tests are run by default when you invoke the Jamfile, but # they are deliberately NOT run from the CI scripts as they soak up @@ -1388,16 +1877,6 @@ test-suite long-running-tests : build-project ../example ; # Expect policy_ref_snips13 to fail (message about no Cauchy Mean). - -test-suite "test_reverse_mode_autodiff" - : - [ run test_reverse_mode_autodiff_flat_linear_allocator.cpp ] - [ run test_reverse_mode_autodiff_constructors.cpp ] - [ run test_reverse_mode_autodiff_comparison_operators.cpp ] - [ run test_reverse_mode_autodiff_stl_support.cpp ] - [ run test_reverse_mode_autodiff_basic_math_ops.cpp ] - [ run test_reverse_mode_autodiff_error_functions.cpp ] - ; rule get_float128_tests { local result ; @@ -1765,6 +2244,6 @@ explicit no_eh_tests ; # Some aliases which group blocks of tests for CI testing: alias github_ci_block_1 : special_fun float128_tests distribution_tests mp misc concepts ; -alias github_ci_block_2 : quadrature interpolators autodiff ../example//examples ../tools ; +alias github_ci_block_2 : quadrature interpolators autodiff test_reverse_mode_autodiff ../example//examples ../tools ; explicit github_ci_block_1 ; explicit github_ci_block_2 ; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp index 52f86cf32..ea99d9385 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp index 80f68cf4e..ba73a7c8d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp index 9b5235962..eab31d076 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp index 53c674467..68d7a4ed6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp index 3e22a5f0a..b1a0a577b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp index f3c35a9b4..22449d990 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp index a4ed5c7d4..b674109da 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp index 978a659a4..6f0b7de6e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_ai_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp index e048d2e77..3b1043d9d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp index effd1ad9b..fdedd63ff 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp index f537855eb..46f67ec47 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp index a0e23a9dc..cab30e72b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp index b129e4f9e..ff11ad511 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 0}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp index 0c14f392e..b7f48db08 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 0}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp index 71a244e71..73f35b8ec 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 0}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp index 78f830d1b..2babd2585 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_airy_bi_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 0}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/autogen_rvar_specfun_tests.sh b/test/test_reverse_mode_autodiff_special_functions_compile/autogen_rvar_specfun_tests.sh index dc2034a7b..8e1babc45 100755 --- a/test/test_reverse_mode_autodiff_special_functions_compile/autogen_rvar_specfun_tests.sh +++ b/test/test_reverse_mode_autodiff_special_functions_compile/autogen_rvar_specfun_tests.sh @@ -3,7 +3,7 @@ # Copyright Maksym Zhelyeznyakov 2025-2026 # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at -# https://www.boost.org/LICENSE_1_0.txt)] +# https://www.boost.org/LICENSE_1_0.txt) TEST_FOLDER="./" SPECFUN_LIST="${TEST_FOLDER}specfun_list.txt" CC="g++" @@ -24,8 +24,17 @@ generate_boost_test() { local et_str="$2" local type_str="$3" local func_name=$(echo "$func_sig" | cut -d'(' -f1) - + local min_val="$4" + local max_val="$5" cat < @@ -38,7 +47,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_${func_name}, T, ${type_str}) { - RandomSample rng{1, 10}; + RandomSample rng{${min_val}, ${max_val}}; T x = rng.next(); rvar x_ad = x; @@ -49,32 +58,44 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(test_${func_name}, T, ${type_str}) BOOST_AUTO_TEST_SUITE_END() EOF } + +JAM_COMPILE_COMMANDS_OUT="generated_jam_compile_commands.txt" # "$BOOST_ROOT_DIR/libs/math/doc/differentiation/generated_jam_compile_commands.txt" +echo "# Autogenerated Jamfile test entries" >> "$JAM_COMPILE_COMMANDS_OUT" + test_and_get_result() { local func_name="$1" local et_str="$2" local float_type="$3" local function_group="$4" local func_sig="$5" + local min_val="$6" + local max_val="$7" local outfilename="${TEST_FOLDER}${function_group}/test_reverse_mode_autodiff_${func_name}_compile_test_ET_${et_str}_${float_type}.cpp" local temp_executable="/tmp/test_reverse_mode_autodiff_${func_name}_ET_${et_str}_${float_type}" - generate_boost_test "$func_sig" "$et_str" "${floats_to_test[$float_type]}" > "$outfilename" + generate_boost_test "$func_sig" "$et_str" "${floats_to_test[$float_type]}" "$min_val" "$max_val" > "$outfilename" $CC -o "$temp_executable" $CPPFLAGS $INCLUDE_FLAGS -lboost_unit_test_framework "$outfilename" &>/dev/null local compile_status=$? + local jam_cmd="" + if [ $compile_status -eq 0 ]; then "$temp_executable" &>/dev/null local run_status=$? - if [ $run_status -eq 0 ]; then echo "YES]\t[YES" + jam_cmd="[ run ${outfilename} ]" else echo "YES]\t[NO" + jam_cmd="[ run-fail ${outfilename} ]" fi else echo "NO]\t[N/A" + jam_cmd="[ compile-fail ${outfilename} ]" fi -} + # Append Jamfile command + echo "$jam_cmd" >> "$JAM_COMPILE_COMMANDS_OUT" +} echo -e "[table\n [[Function]\t[compiles with ET ON]\t[runs with ET ON]\t[compiles with ET OFF]\t[runs with ET OFF]\t[works with multiprecision]\t[known issues]]\n" > "$LOG_FILE" @@ -95,7 +116,7 @@ floats_to_test["mp_types"]="${mp_type}" # Skip the header (first line) and read the list of special functions line by line. # The `IFS=$'\t'` ensures that the fields are split by a tab character. -tail -n +2 "$SPECFUN_LIST" | while IFS=$'\t' read -r function_group specfun; do +tail -n +2 "$SPECFUN_LIST" | while IFS=$'\t' read -r function_group specfun min_val max_val; do # Create the directory if it doesn't exist if [[ ! -d "${TEST_FOLDER}${function_group}" ]]; then mkdir -p "${TEST_FOLDER}${function_group}" @@ -104,12 +125,12 @@ tail -n +2 "$SPECFUN_LIST" | while IFS=$'\t' read -r function_group specfun; do func_name=$(echo "$specfun" | cut -d'(' -f1) # Run tests for standard C++ types - cpp_et_on_result=$(test_and_get_result "$func_name" "ON" "cpp_types" "$function_group" "$specfun") - cpp_et_off_result=$(test_and_get_result "$func_name" "OFF" "cpp_types" "$function_group" "$specfun") + cpp_et_on_result=$(test_and_get_result "$func_name" "ON" "cpp_types" "$function_group" "$specfun" "$min_val" "$max_val") + cpp_et_off_result=$(test_and_get_result "$func_name" "OFF" "cpp_types" "$function_group" "$specfun" "$min_val" "$max_val") # Run tests for multiprecision types - mp_et_on_result=$(test_and_get_result "$func_name" "ON" "mp_types" "$function_group" "$specfun") - mp_et_off_result=$(test_and_get_result "$func_name" "OFF" "mp_types" "$function_group" "$specfun") + mp_et_on_result=$(test_and_get_result "$func_name" "ON" "mp_types" "$function_group" "$specfun" "$min_val" "$max_val") + mp_et_off_result=$(test_and_get_result "$func_name" "OFF" "mp_types" "$function_group" "$specfun" "$min_val" "$max_val") # Determine the "works with multiprecision" column value mp_status="NO" @@ -134,12 +155,4 @@ tail -n +2 "$SPECFUN_LIST" | while IFS=$'\t' read -r function_group specfun; do done echo -e "]" >> "$LOG_FILE" -sed -i -e '/BEGIN SPECFUN TABLE/,/END SPECFUN TABLE/{ - /BEGIN SPECFUN TABLE/{ - p - r ../../doc/differentiation/compilation_table.txt - } - /END SPECFUN TABLE/p - d -}' ../../doc/differentiation/autodiff_reverse.qbk diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp index 183d2c0c4..b99844722 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cbrt, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp index 2437f602d..085f48245 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cbrt, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp index 32304d2d3..cef29b10b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cbrt, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp index 7a23cfc6b..8d2a3d30e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cbrt, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp index cdf934936..8af4a0bcb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cos_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp index ea92c38be..5ee2019b2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cos_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp index d3e98e7d0..c05736f2c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cos_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp index 7a1ec31a3..fa9935f77 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cos_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp index 1cff96264..3cd994066 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp index ea57c7e3f..808612d53 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp index b461a273d..fa4cb97cd 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp index aa58b9af4..d1705047c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp index 58d0debf0..b558fd8d5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypot, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp index 49fff738e..7ac49a1c2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypot, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp index 4c9ee3069..1c53aa080 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypot, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp index 4aec192fd..615f806be 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypot, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp index 3218f03a1..5cea160fc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_log1p, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp index 35e1695a6..f71cbe5f4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_log1p, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp index 61c39c899..552ce0c66 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_log1p, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp index 07ea77948..f37e516ea 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_log1p, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp index 08267cf30..cf1a1d6c0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logaddexp, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp index ccc9e86f1..c5b45d6e3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logaddexp, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp index 14f4fb645..203636b47 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logaddexp, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp index 53dfd5fba..a190f8af1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logaddexp, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp index ac6c39bbf..07ed13c3b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logsumexp, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp index 460bd92f5..1b7a210ec 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logsumexp, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp index 88dd27675..27c54eac2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logsumexp, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp index b297d1bf3..e02513b01 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_logsumexp, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp index b11c073e2..2b29a5495 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_powm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp index 862f0a10a..8fcb4b6ae 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_powm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp index 5092d3154..fa1284189 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_powm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp index 0cf8a4203..a11d08875 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_powm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp index 242171fce..7edc3e04b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rsqrt, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp index 23b61b842..53d3bf616 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rsqrt, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp index 6b80bc067..9923efda9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rsqrt, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp index 41082aa7d..5e960cc11 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rsqrt, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp index db4f24898..d4ce82b00 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sin_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp index 3278ce4f5..6aa5a7fad 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sin_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp index 9833887b4..036231984 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sin_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp index e93b9964a..8da746bd5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sin_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp index f75e3ff54..529dd1415 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sqrt1pm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp index fd220c3e0..4d9bcb1cd 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sqrt1pm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp index 59066ba95..148e99468 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sqrt1pm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp index e8e0c2a18..a40423f84 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sqrt1pm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp index d5e85ea58..5bb318261 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp index 1b501af59..5dd391d0d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp index 612f5a2b9..f7309e749 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp index 3b6c046a7..3cb248e03 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp index 928d318a1..a23ac8a93 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp index 5aefa5501..66bda502b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp index 6f725f5a3..8bfe5764d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp index edea578f7..c6291c933 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_i_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp index dfdad0b3f..d23d6a906 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp index c0a8a5722..a12f788a8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp index c682944df..6daabc1e8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp index bf8c8168d..efe1b3976 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp index e0df2169e..9d396f731 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp index e594ccb8b..22ce9cdc8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp index 624fe8712..7a0249d9f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp index f7ecfc592..58a87b0bc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_j_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp index 519475f44..0b4be8b39 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp index 38b262e3d..6393099c1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp index c71aee051..dcfb1fd7d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp index cf14690eb..1e1461068 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp index e76057edf..7ff1fd500 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp index 062f8ce38..ca15f627b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp index 14330c48c..6c02a016c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp index 65dee0ddf..22952ae5b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_bessel_k_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp index 689930f52..d7f760882 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp index de4103dd2..6874fd927 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp index f9ad6be0e..4254eeaff 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp index 19a4b81e1..80ed080d2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp index f91c3e824..865fa6c0e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp index 337031607..5c961579e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp index 42555dcca..4fbac65ed 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp index 7fa9d8c24..8d921970d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_neumann_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp index c89ffbbcd..796200ad2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp index 70c047e55..cb2818db8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp index 1298fbcfe..24500b803 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp index 7f8f4a50d..d5c339b5e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp index cfd109d80..e9d2964c7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp index f3ce89913..b64191905 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp index f9b4eff83..2d60bff98 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp index 22a6e21e3..95d27eac2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_bessel_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp index cf329b29c..69e96b1b9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp index 0bdc92d75..20df60a0f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp index eb4732534..e5e789d5c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp index 296a9519f..e1ec93fdb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp index 5c1961575..7747322ab 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp index 8219687ee..f1ba531a0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp index fc601a424..b7bef3e4e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp index fb1ae8b58..7129f5ef8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_neumann_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp index ab7873452..d71da3b68 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_beta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp index bfb641ae2..6931926fb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_beta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp index af3b58063..3801671fa 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_beta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp index 55323d241..e0e3a7de1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_beta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp index 2c309ac83..3fac8e47d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_betac, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp index aa78e6e90..7b3a7b04b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_betac, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp index b4fe3269a..dd01df99b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_betac, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp index 8a43b9cb4..fa29b61f2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_betac, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp index d7ae42636..a44222053 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp index ba15c8850..38e48dc05 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp index b4b527a7f..d9e77c703 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp index 806b71fa0..cc10ae3c0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp index e2659eee3..07962fa66 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_derivative, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp index a268f83de..4c11784cd 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_derivative, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp index e7f09a5c0..8fe2bc635 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_derivative, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp index 35c30bdab..20e614d9c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_derivative, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp index e8b111d46..a7d8292e4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inv, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp index 253e03a52..bdc0bb3a3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inv, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp index 7c3d4b36f..d30259678 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inv, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp index dd4847ae7..bf2f75e55 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inv, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp index 3cc777f48..0c97037b7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inva, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp index 55744bba8..84a0cb627 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inva, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp index 4476ad217..326dcedd9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inva, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp index 4d640335c..33cafd70a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_inva, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp index b55cb1f46..9ad953857 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_invb, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp index a1d29dcc0..a03d5f944 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_invb, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp index edaae16bf..04bd708fe 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_invb, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp index f588ad656..c54318867 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibeta_invb, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp index d6c6c02ab..ac2855800 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp index b6fa5878a..a8e6b2b5d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp index c891f4523..23602ba42 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp index 0f2aac8d1..42e07434e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp index 889664abc..71c43e3dd 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inv, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp index e4addb537..a73c6780f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inv, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp index 1a75ebb14..f2896b3eb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inv, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp index 69e75ec83..f2c568e9a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inv, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp index 53da7ba9e..d956b68e7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inva, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp index 0591df109..3f6e2be1b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inva, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp index 4ba15acf2..f081ba7d1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inva, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp index d898a3984..160f4718e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_inva, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp index d6f5b331a..f8b5bf7ba 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_invb, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp index 37fcba8f1..0a35c9c56 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_invb, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp index d885e282f..323beddc2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_invb, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp index ac155b9a5..32dbddc23 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ibetac_invb, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp index 7d02002c6..5fc0d18d8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp index 38ec1afa4..41e78b45f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp index e2af102e9..20119a998 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp index 24913209a..b6a231d96 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp index 18f6d0aa8..604b5f1c0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp index 679f735cd..d715e4233 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp index 38fa0aa3f..78f224551 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp index dbb034e66..575c7206c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_t_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp index aedd15a04..a09945abc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_u, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp index 452a7766c..496f99b4e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_u, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp index 85b47f345..765941ee0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_u, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp index b91c80e92..e07e6497e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_chebyshev_u, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp index 7fa5c78dd..b5f247975 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp index 637932c39..e873751f3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp index f7cc3c9f3..83e5dbfc0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp index cf05afdd0..65ee2b671 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp index 12f0b6b90..09a14c002 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp index 0fe0f31eb..a67d13aeb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp index 5eaa83f6a..88a24ddc2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp index 639c52bda..7202ef7dd 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp index d5795a58b..590795dc1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_3, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp index 267bef717..02a13948b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_3, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp index bb14d5a29..ebdaf6c5c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_3, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp index a39a7a4f1..c4c4f5e5b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_3, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp index 323407a5c..30c3ddaee 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_d, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp index d693656f4..5feb65092 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_d, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp index 03eb35ed5..ab075b3f1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_d, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp index e6f2ad71f..450062173 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_d, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp index e01148148..b50100a1d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp index 8fa249900..4400361f4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp index 8fdbee303..4443182d7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp index 851331d99..51c9a2f69 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp index fd61d9795..d6a91b948 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp index 95eceaa01..b34d71933 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp index a83354447..923b219b5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp index 2aa442128..4687185ae 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp index c4ec45372..7a296aefb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rf, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp index 8861b8c2a..463feb043 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rf, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp index 9bb5efe3d..b5cf3b553 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rf, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp index 596d3027b..3fcb53def 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rf, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp index cecb4212a..4a2d53822 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rg, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp index 6758e4f38..6fd8119b1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rg, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp index a6ead9655..ed2469101 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rg, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp index dcb818a49..92591b65d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rg, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp index 222077282..938f507f4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rj, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp index b17d6dd78..1608bc25a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rj, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp index a7975bb53..a8c78e005 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rj, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp index df8fe2c0d..3a17afd3d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_ellint_rj, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp index 8008ec38b..835761da7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expint, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp index 0c7a3dcee..e9c7594c0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expint, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp index d0f918d6b..312ed8d01 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expint, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp index f32e17032..0c0531d84 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_expint, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp index 1e244930e..2067da7f7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_falling_factorial, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp index 4b1c14b65..963c7f9dd 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_falling_factorial, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp index 7d9f13397..a78077ef9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_falling_factorial, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp index 04a261f05..5291892b6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_falling_factorial, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp index 6c9389f6a..b18618a99 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rising_factorial, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp index 15b04f787..0bb099fc6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rising_factorial, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp index 3afda2337..534cab0bf 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rising_factorial, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp index 72a0234a5..570775a78 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_rising_factorial, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp index 9ebf7bec1..96d4bbd4f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_digamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp index e851e55de..ef5bab146 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_digamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp index 59a7c03ee..f745fcc79 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_digamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp index bd22e4be6..cfb13395d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_digamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp index de596d004..ef6fa7415 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_p, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp index 3ea87fdd5..1329dd30b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_p, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp index b96dc088e..a4f42a611 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_p, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp index 28ed30734..52d84e703 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_p, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp index fe1b576cc..58b77725b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_q, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp index 2fc8ebbe8..c584e9795 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_q, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp index 7968f44a5..92166c9d3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_q, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp index 4b159a40d..f54956853 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gamma_q, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp index 968518dcf..664ee07db 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lgamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp index 147425b7b..0c2b86eb8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lgamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp index 86f3e7d63..5c390fa93 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lgamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp index 98ac6749c..492b895f9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lgamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp index 0dba41c01..002f954ae 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_polygamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp index 083a413bb..4371869b3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_polygamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp index 43892667f..e8485ab5b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_polygamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp index ab1737013..ffd857631 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_polygamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp index b9009f91d..8148c9468 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma1pm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp index d1d3c99f4..307c84e8d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma1pm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp index 5b482e527..d9c040781 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma1pm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp index f61c8e088..76e88353b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma1pm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp index 1b4b968c2..7838c0815 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp index 9a39833fa..54928e8d8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp index ae02daaae..6b4dc19d5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp index 9effad918..b46f7871d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-3, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp index c5c2e6f73..edacee14c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_delta_ratio, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp index af896389c..f61e10cde 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_delta_ratio, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp index a920de97c..2194eee68 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_delta_ratio, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp index c832096b1..4703561cc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_delta_ratio, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp index 5d54a8815..59b435e93 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_lower, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp index ced520997..a500ea477 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_lower, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp index 9d3bb56e3..bc1111282 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_lower, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp index ffb84987f..dca7a5bb8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_lower, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp index c7081eebc..2a0d62643 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_ratio, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp index f007d744b..803d1681e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_ratio, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp index 93048ac2e..f4d716ebf 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_ratio, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp index 96a18cb4a..7a376d31b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_tgamma_ratio, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{0, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp index eba6955c2..a83dc6b2a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_trigamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp index 006b3c159..4b6af652b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_trigamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp index c5afd8678..ff5a64a8a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_trigamma, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp index 8c9e4a7c6..8be70a83e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_trigamma, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-5, 5}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp index 52623415f..5e6cfbf46 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp index 5f74b6639..f6f4b87c0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp index cadba3e81..bfa99e0fc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp index 6bdb59bd9..6931682ea 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp index 412fd26ca..0d18b313b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_derivative, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp index 6fb3cf90a..1061f39bc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_derivative, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp index 8affeb315..8d44ed82f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_derivative, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp index 0f57d489c..d0c4f7bcc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_derivative, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp index b3e7a9b26..616239b02 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp index 3d8f7104a..41e24c3b5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp index 463e31ae0..13aa46e65 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp index 59b6b3c1d..e0fee9bde 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_gegenbauer_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/generated_jam_compile_commands.txt b/test/test_reverse_mode_autodiff_special_functions_compile/generated_jam_compile_commands.txt new file mode 100644 index 000000000..6196186e5 --- /dev/null +++ b/test/test_reverse_mode_autodiff_special_functions_compile/generated_jam_compile_commands.txt @@ -0,0 +1,1941 @@ +# Autogenerated Jamfile test entries +# Autogenerated Jamfile test entries +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp ] +# Autogenerated Jamfile test entries +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp ] +# Autogenerated Jamfile test entries +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp ] +[ run-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp ] +# Autogenerated Jamfile test entries +[ run ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_cpp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_lgamma_compile_test_ET_OFF_mp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_cpp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_digamma_compile_test_ET_OFF_mp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_cpp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_trigamma_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_cpp_types.cpp ] +[ run ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_polygamma_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_delta_ratio_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_p_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_gamma_q_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gamma/test_reverse_mode_autodiff_tgamma_lower_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./factorial/test_reverse_mode_autodiff_rising_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_cpp_types.cpp ] +[ run ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./factorial/test_reverse_mode_autodiff_falling_factorial_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_beta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_betac_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inv_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inv_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_inva_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_inva_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_invb_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibetac_invb_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./beta/test_reverse_mode_autodiff_ibeta_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp ] +[ run ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp ] +[ run ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp ] +[ run ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp ] +[ run ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp ] +[ run ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp ] +[ run ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp ] +[ run ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp ] +[ run ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_cpp_types.cpp ] +[ run ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_compile_test_ET_OFF_mp_types.cpp ] +[ run ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_cpp_types.cpp ] +[ run ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_u_compile_test_ET_OFF_mp_types.cpp ] +[ run ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./chebyshev/test_reverse_mode_autodiff_chebyshev_t_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./gegenbauer/test_reverse_mode_autodiff_gegenbauer_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_cpp_types.cpp ] +[ run ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_cpp_types.cpp ] +[ run ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_cpp_types.cpp ] +[ run ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_cpp_types.cpp ] +[ run ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_j_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_i_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_cyl_bessel_k_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_bessel_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./bessel/test_reverse_mode_autodiff_sph_neumann_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_cpp_types.cpp ] +[ run ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_ai_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_cpp_types.cpp ] +[ run ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_bi_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_ai_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_cpp_types.cpp ] +[ run ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./airy/test_reverse_mode_autodiff_airy_bi_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rf_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rj_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_rg_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_3_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./elliptic_integrals/test_reverse_mode_autodiff_ellint_d_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp ] +[ run ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_cpp_types.cpp ] +[ run ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./expint/test_reverse_mode_autodiff_expint_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_sin_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_cos_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_cpp_types.cpp ] +[ run-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_log1p_compile_test_ET_OFF_mp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_cpp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_expm1_compile_test_ET_OFF_mp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_cpp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_cbrt_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_cpp_types.cpp ] +[ run ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_sqrt1pm1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_powm1_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_hypot_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_rsqrt_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logaddexp_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./basic_funcs/test_reverse_mode_autodiff_logsumexp_compile_test_ET_OFF_mp_types.cpp ] +[ run ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ run ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp ] +[ run ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp ] +[ compile-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp ] +[ compile-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp ] +[ compile-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp ] +[ compile-fail ./owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp ] diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp index 74c7137ae..86665d589 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp index 2cc0b15d9..be017acb6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp index 8adf5de1a..3c03192e4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp index d568f4258..b0a1fb824 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp index 246277532..b08c4d247 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp index bf2a47190..e9e23c9f3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp index 367e7c38e..309954337 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp index 1bf593a3b..b710d98a7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_cyl_hankel_2_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_cyl_hankel_2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp index bb701b69e..3556e7497 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp index 4a1d12d3e..f8cc1b526 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp index 78c65b941..68777e415 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp index 3005aad13..4fd73d2d6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp index 42f54aa4e..821639524 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp index 9562a60bd..bc3f9d6c0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp index 4933893e9..deb3ae9ea 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp index 0f6241e98..64dd61159 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hankel/test_reverse_mode_autodiff_sph_hankel_2_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sph_hankel_2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp index 685113385..d83cbf052 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hermite, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp index 62f5dcfa4..4222a6743 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hermite, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp index 17f0c2b09..f30718455 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hermite, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp index ca5270ed5..f01625234 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hermite/test_reverse_mode_autodiff_hermite_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hermite, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp index 0eef52f12..ab132c50d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_heuman_labda, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp index 86466303a..76e6b3614 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_heuman_labda, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp index af7fcda5d..e1457f2e2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_heuman_labda, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp index 8ed7c38e3..68c3e56b6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/heuman_lambda/test_reverse_mode_autodiff_heuman_labda_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_heuman_labda, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp index ace9f33c4..2be1f1f1d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_0F1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp index 279ef2405..9b45b7ca9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_0F1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp index a5d52a156..be35438a8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_0F1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp index c7d1b10a6..eb16fc87e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_0F1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_0F1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp index 00de0289c..05a849ede 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F0, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp index 43ad34d12..6a60f6cef 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F0, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp index b83d9fabd..6c82220f7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F0, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp index 0f4eeae56..168f9bc57 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F0_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F0, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp index 7e96290c6..232905b3b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp index ff933e8a6..3020ff11d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp index 32f139650..27b62adf4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp index 36354f642..6e1728b14 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_1F1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_1F1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp index 351f1f492..1a36cb614 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_2F0, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp index 5e3037267..56a31ab0b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_2F0, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp index acf128823..e5c806ea0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_2F0, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp index 83dac96e7..18e92b444 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/hypergeometric/test_reverse_mode_autodiff_hypergeometric_2F0_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_hypergeometric_2F0, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp index ef04ceed0..b1a374c8e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp index ede5f54a7..696af0478 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp index f032b852a..7cdb2679d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp index ee42d8a3f..fec8b5c9a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp index b363397cb..6d3d7a478 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_derivative, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp index e5c35dda7..5ac164aa6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_derivative, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp index d7cbfe944..d37d7b446 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_derivative, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp index d99cfa147..b6fa65f67 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_derivative_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_derivative, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp index e838c02bb..a475ccae4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_double_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp index a43c5a981..a03f2e635 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_double_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp index aa047517a..925e9c5d3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_double_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp index cfb203760..81901c192 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_double_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_double_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp index 67a376f41..de12f9192 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp index 82f7c2e01..19fa5a752 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp index f1e9132e5..26232c878 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp index ed15a001e..1321bb4a6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi/test_reverse_mode_autodiff_jacobi_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp index 501404a85..d1c975672 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp index 7fa95e5e9..96c2a0177 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp index bc4e3f231..913eae57c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp index 406c53eba..fd85b6380 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cd_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp index b1ca02cea..2e95a23dc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cn, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp index 0fb094826..7c4d68135 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cn, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp index dabbc542b..29ae4bedb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cn, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp index 81d639265..5b2924930 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cn_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cn, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp index b0d341b76..87956e486 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cs, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp index d7d61bcc1..75c796a1a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cs, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp index 1878aa2d3..b68529611 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cs, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp index 7d381d1e7..6c9ef1a31 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_cs_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_cs, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp index 1e15c6d57..47c24a9ad 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp index 99fcd5481..6dc824dc5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp index 93f7cca8e..7be02b155 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp index 5d13d5923..8fdf1f3b1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dc_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp index 46131b258..dd5bf5134 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dn, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp index 39f4d39cc..b16d1f8f8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dn, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp index 04347524b..ff169f059 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dn, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp index f6793aa2c..373ba914d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_dn_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_dn, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp index e9d89ee0f..0b82f9821 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ds, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp index 7e27f4a85..10cca2cf1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ds, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp index 508cb0ff0..fba117799 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ds, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp index 48e1d1341..e045436a5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ds_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ds, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp index 61e08a30a..4c8a4c73e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp index a212b7542..cfddef68c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp index ea1477ce9..e363d7d46 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp index 9fcb1e47f..0b3620b66 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nc_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp index 872c35efa..880003334 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp index 68a46854d..36abfeb06 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp index 7624d0cc2..9d7810262 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp index 78418ead3..1be9614da 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_nd_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_nd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp index dc51aef0d..970b3853c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ns, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp index 8b66d4a98..0e382aedb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ns, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp index eb9cbf7fc..e0a06ceb0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ns, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp index 7342ee361..eb5858ad1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_ns_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_ns, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp index 9b6369efa..e5de085ee 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp index eb5a2dd4c..ccebd8340 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp index 2e25b1557..0448a19a1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sc, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp index 78f60483a..ac7c6fb06 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sc_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sc, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp index c941bf357..67503be02 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp index 21606864d..06f28b639 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp index 57fa85371..087e9aec2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sd, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp index c41fc3fc3..454522937 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sd_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sd, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp index baf073e96..b4ef220bc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sn, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp index 495166cdb..67134a844 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sn, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp index 8a6367beb..8b860dfce 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sn, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp index b639bfaed..cca49eb02 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_elliptic/test_reverse_mode_autodiff_jacobi_sn_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_sn, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp index 3b56b111f..5e284bc1b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp index 8fe5ef458..b7852de21 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp index 6bd1fbc5b..503d8753e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp index 31cb70259..4c4fa6598 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp index 9aec464f6..c1b0ecd1d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp index 6eac8b42a..ad103ac8d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp index 8725a29f5..ff0eed88d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp index 7f202abc1..17a6a138d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta1tau_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta1tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp index f7eb798d5..b11b65acb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp index c6d7bd81c..6119d52b2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp index 2cd77ba50..a26c03c41 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta2, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp index 0669add50..2b26424a0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta2_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta2, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp index b04782893..ab9944d90 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp index 317239a4c..aecb1ac45 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp index 4ad11cfc4..00171fcb6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp index d1e7b560e..13fe59415 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp index 2e7afc7a2..a9c3817b3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp index 0c6bf9cee..3d74ac84d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp index 6d2b78c79..eec55223a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp index df730b61d..ef5652134 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp index e724aedb2..79b4f388f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp index d6cba2ea7..604f1e5cf 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp index 0fdf76bfe..e9e7d5bec 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp index ce8b7c1ef..f5400d974 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3m1tau_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3m1tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp index b524fbf25..cdcb25729 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp index b2bd2d159..388da046d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp index 14c4b2c53..76d76a9d5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp index 50f34d0a8..220b2a855 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta3tau_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta3tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp index 95c29fc0d..f0a4cc4a4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp index f73842e2f..030c489e6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp index b63a72153..c4336fd7b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp index 5cdf7fc11..0937a8b77 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp index 077bef12a..1e215e5ef 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp index 008aca810..fb53fa6c6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp index 8f39cdfc9..6c4d842b9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp index df8983415..347523d0b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp index 72cb82246..406b5bf54 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp index c18cb5feb..988b64b8f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp index 7a369edcd..05334a56d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp index 9d380fe0e..19be04492 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4m1tau_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4m1tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp index 8987b1f43..6873b04ea 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp index bb6f699d7..e03135ae9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp index 4a096657d..7ec862016 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4tau, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp index 8639d2692..8bf246de6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_theta/test_reverse_mode_autodiff_jacobi_theta4tau_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_theta4tau, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp index bbf2ae8bf..a8a64c0b0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_zeta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp index 32af64fdf..0db117f65 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_zeta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp index 08a7b8854..3fe0d58cc 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_zeta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp index 532c3a2e3..ef8a0e817 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/jacobi_zeta/test_reverse_mode_autodiff_jacobi_zeta_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_jacobi_zeta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp index bdf5d6f63..c8a435ae8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_laguerre, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp index 279c8e4c2..d341ebf23 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_laguerre, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp index d229d1801..722e5f037 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_laguerre, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp index f87a9bcf0..0ecc20629 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/laguerre/test_reverse_mode_autodiff_laguerre_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_laguerre, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp index 1192ee268..2154228b8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp index a8ea05eb8..683877ab9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp index 4b13e33ff..a29b757c8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp index 27df65180..588863b09 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp index 43f6dc699..92a4a2131 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_w0_prime; - auto y_expect = boost::math::lambert_w0_prime; + auto y = boost::math::lambert_w0_prime(x_ad); + auto y_expect = boost::math::lambert_w0_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp index f67af4019..b155e6379 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_w0_prime; - auto y_expect = boost::math::lambert_w0_prime; + auto y = boost::math::lambert_w0_prime(x_ad); + auto y_expect = boost::math::lambert_w0_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp index cd483b667..6ec15e5bb 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_w0_prime; - auto y_expect = boost::math::lambert_w0_prime; + auto y = boost::math::lambert_w0_prime(x_ad); + auto y_expect = boost::math::lambert_w0_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp index b85821f2c..2c33eaa6b 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_w0_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_w0_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_w0_prime; - auto y_expect = boost::math::lambert_w0_prime; + auto y = boost::math::lambert_w0_prime(x_ad); + auto y_expect = boost::math::lambert_w0_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp index b4e362508..5c5b5ced3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp index b5a32199e..2d5ca1fe2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp index 5efab9b60..98fe3967e 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp index 902903139..2a5d4b9e0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp index e459920ee..3f50e9387 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_wm1_prime; - auto y_expect = boost::math::lambert_wm1_prime; + auto y = boost::math::lambert_wm1_prime(x_ad); + auto y_expect = boost::math::lambert_wm1_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp index 7fd077355..faf32b9fa 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_wm1_prime; - auto y_expect = boost::math::lambert_wm1_prime; + auto y = boost::math::lambert_wm1_prime(x_ad); + auto y_expect = boost::math::lambert_wm1_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp index c3406d1a0..1aa52df0c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_wm1_prime; - auto y_expect = boost::math::lambert_wm1_prime; + auto y = boost::math::lambert_wm1_prime(x_ad); + auto y_expect = boost::math::lambert_wm1_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp index 09224c483..121ad4975 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/lambert_w/test_reverse_mode_autodiff_lambert_wm1_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,12 +18,12 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_lambert_wm1_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; - auto y = boost::math::lambert_wm1_prime; - auto y_expect = boost::math::lambert_wm1_prime; + auto y = boost::math::lambert_wm1_prime(x_ad); + auto y_expect = boost::math::lambert_wm1_prime(x); BOOST_CHECK_CLOSE(y.item(), y_expect, 1000*boost_close_tol()); } BOOST_AUTO_TEST_SUITE_END() diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp index 7b6e2fedb..f590a6b01 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp index c11666e53..611b2f709 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp index 9130fa21b..cf92f7a0c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp index d67a019a8..9d4d880be 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp index 66a7721bf..cd99d8299 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp index 647ffc0c0..2bd72cd02 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp index 79dc163a2..fab0fc979 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p_prime, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp index 588a039f5..7e6d7793a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_p_prime_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_p_prime, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp index 79e865e0f..624225c44 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_q, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp index e2093e995..1cba46be9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_q, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp index 922401c73..be17b63cf 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_q, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp index 20d42214f..1259f87f6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/legendre/test_reverse_mode_autodiff_legendre_q_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_legendre_q, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-1, 1}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp index 975c4e491..a7afdafaf 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_owens_t, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp index b359b6d69..991407d63 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_owens_t, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp index 3276177f5..01ac89325 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_owens_t, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp index 4a08d0218..5b74648e6 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/owens_t/test_reverse_mode_autodiff_owens_t_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_owens_t, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp index d6c40187b..b2a76fe22 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_zeta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp index f9796e19f..b63cccf90 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_zeta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp index 6531ee5f8..d306ba123 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_zeta, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp index 6cf1378f7..716360f0c 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/riemann_zeta/test_reverse_mode_autodiff_zeta_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_zeta, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp index 320bc1979..ce3a89035 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinc_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp index 721a7fc10..7e0536ee0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinc_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp index 99ca87b0f..696d730a1 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinc_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp index cc86853c0..256e38f23 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinc_pi/test_reverse_mode_autodiff_sinc_pi_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinc_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp index bd03f9260..8e95d4ae3 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinhc_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp index 790828364..d4972716d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinhc_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp index eeb61e573..aec3411b0 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinhc_pi, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp index 339efda67..7ed327fd7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/sinhc_pi/test_reverse_mode_autodiff_sinhc_pi_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_sinhc_pi, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/specfun_list.txt b/test/test_reverse_mode_autodiff_special_functions_compile/specfun_list.txt index 9a2d51576..e3e70985d 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/specfun_list.txt +++ b/test/test_reverse_mode_autodiff_special_functions_compile/specfun_list.txt @@ -1,122 +1,122 @@ -group function -gamma tgamma(arg) -gamma tgamma1pm1(arg) -gamma lgamma(arg) -gamma digamma(arg) -gamma trigamma(arg) -gamma polygamma(1,arg) -gamma tgamma_ratio(arg,arg) -gamma tgamma_delta_ratio(arg,arg) -gamma gamma_p(arg,arg) -gamma gamma_q(arg,arg) -gamma tgamma_lower(arg,arg) -factorial rising_factorial(arg,3) -factorial falling_factorial(arg,3) -beta beta(arg,arg) -beta ibeta(arg,arg,arg) -beta ibetac(arg,arg,arg) -beta betac(arg,arg,arg) -beta ibeta_inv(arg,arg,arg) -beta ibetac_inv(arg,arg,arg) -beta ibeta_inva(arg,arg,arg) -beta ibetac_inva(arg,arg,arg) -beta ibeta_invb(arg,arg,arg) -beta ibetac_invb(arg,arg,arg) -beta ibeta_derivative(arg,arg,arg) -legendre legendre_p(2,arg) -legendre legendre_p_prime(2,arg) -legendre legendre_q(3,arg) -laguerre laguerre(1,3,arg) -hermite hermite(2,arg) -chebyshev chebyshev_t(1,arg) -chebyshev chebyshev_u(2,arg) -chebyshev chebyshev_t_prime(3,arg) -spherical_harmonics shperical_harmonic(3,3,arg,arg) -spherical_harmonics spherical_harmonic_r(2,5,arg,arg) -spherical_harmonics spherical_harmonic_i(2,5,arg,arg) -gegenbauer gegenbauer(2,arg,arg) -gegenbauer gegenbauer_prime(3,arg,arg) -gegenbauer gegenbauer_derivative(3,arg,arg,2) -jacobi jacobi(2,arg,arg,arg) -jacobi jacobi_derivative(2,arg,arg,arg,1) -jacobi jacobi_prime(3,arg,arg,arg) -jacobi jacobi_double_prime(2,arg,arg,arg) -bessel cyl_bessel_j(0.25,arg) -bessel cyl_neumann(arg,arg) -bessel cyl_bessel_i(0.25,arg) -bessel cyl_bessel_k(arg,arg) -bessel sph_bessel(2,arg) -bessel sph_neumann(1,arg) -bessel cyl_bessel_j_prime(arg,arg) -bessel cyl_neumann_prime(arg,arg) -bessel cyl_bessel_i_prime(arg,arg) -bessel cyl_bessel_k_prime(arg,arg) -bessel sph_bessel_prime(arg,arg) -bessel sph_neumann_prime(arg,arg) -hankel cyl_hankel_1(arg,arg) -hankel cyl_hankel_2(arg,arg) -hankel sph_hankel_1(arg,arg) -hankel sph_hankel_2(arg,arg) -airy airy_ai(arg) -airy airy_bi(arg) -airy airy_ai_prime(arg) -airy airy_bi_prime(arg) -elliptic_integrals ellint_rf(arg,arg,arg) -elliptic_integrals ellint_rd(arg,arg,arg) -elliptic_integrals ellint_rj(arg,arg,arg,arg) -elliptic_integrals ellint_rc(arg,arg) -elliptic_integrals ellint_rg(arg,arg,arg) -elliptic_integrals ellint_1(arg,arg) -elliptic_integrals ellint_2(arg,arg) -elliptic_integrals ellint_3(arg,arg,arg) -elliptic_integrals ellint_d(arg,arg) -jacobi_zeta jacobi_zeta(arg,arg) -heuman_lambda heuman_labda(arg,arg) -jacobi_elliptic jacobi_cd(arg,arg) -jacobi_elliptic jacobi_cn(arg,arg) -jacobi_elliptic jacobi_cs(arg,arg) -jacobi_elliptic jacobi_dc(arg,arg) -jacobi_elliptic jacobi_dn(arg,arg) -jacobi_elliptic jacobi_ds(arg,arg) -jacobi_elliptic jacobi_nc(arg,arg) -jacobi_elliptic jacobi_nd(arg,arg) -jacobi_elliptic jacobi_ns(arg,arg) -jacobi_elliptic jacobi_sc(arg,arg) -jacobi_elliptic jacobi_sd(arg,arg) -jacobi_elliptic jacobi_sn(arg,arg) -jacobi_theta jacobi_theta1(arg,arg) -jacobi_theta jacobi_theta1tau(arg,arg) -jacobi_theta jacobi_theta2(arg,arg) -jacobi_theta jacobi_theta1tau(arg,arg) -jacobi_theta jacobi_theta3(arg,arg) -jacobi_theta jacobi_theta3tau(arg,arg) -jacobi_theta jacobi_theta3m1(arg,arg) -jacobi_theta jacobi_theta3m1tau(arg,arg) -jacobi_theta jacobi_theta4(arg,arg) -jacobi_theta jacobi_theta4tau(arg,arg) -jacobi_theta jacobi_theta4m1(arg,arg) -jacobi_theta jacobi_theta4m1tau(arg,arg) -lambert_w lambert_w0(arg) -lambert_w lambert_wm1(arg) -lambert_w lambert_w0_prime -lambert_w lambert_wm1_prime -riemann_zeta zeta(arg) -expint expint(arg) -hypergeometric hypergeometric_1F0(arg,arg) -hypergeometric hypergeometric_0F1(arg,arg) -hypergeometric hypergeometric_2F0(arg,arg,arg) -hypergeometric hypergeometric_1F1(arg,arg,arg) -basic_funcs sin_pi(arg) -basic_funcs cos_pi(arg) -basic_funcs log1p(arg) -basic_funcs expm1(arg) -basic_funcs cbrt(arg) -basic_funcs sqrt1pm1(arg) -basic_funcs powm1(arg,arg) -basic_funcs hypot(arg,arg) -basic_funcs rsqrt(arg) -basic_funcs logaddexp(arg,arg) -basic_funcs logsumexp((arg,arg) -sinc_pi sinc_pi(arg) -sinhc_pi sinhc_pi(arg) -owens_t owens_t(arg,arg) +group function test-domain-min test-domain-max +gamma tgamma(arg) -3 5 +gamma tgamma1pm1(arg) -3 5 +gamma lgamma(arg) -10 10 +gamma digamma(arg) -5 5 +gamma trigamma(arg) -5 5 +gamma polygamma(1,arg) -5 5 +gamma tgamma_ratio(arg,arg) 0 5 +gamma tgamma_delta_ratio(arg,arg) 0 5 +gamma gamma_p(arg,arg) 0 5 +gamma gamma_q(arg,arg) -10 10 +gamma tgamma_lower(arg,arg) -10 10 +factorial rising_factorial(arg,3) -10 10 +factorial falling_factorial(arg,3) -10 10 +beta beta(arg,arg) -10 10 +beta ibeta(arg,arg,arg) -10 10 +beta ibetac(arg,arg,arg) -10 10 +beta betac(arg,arg,arg) -10 10 +beta ibeta_inv(arg,arg,arg) -10 10 +beta ibetac_inv(arg,arg,arg) -10 10 +beta ibeta_inva(arg,arg,arg) -10 10 +beta ibetac_inva(arg,arg,arg) -10 10 +beta ibeta_invb(arg,arg,arg) -10 10 +beta ibetac_invb(arg,arg,arg) -10 10 +beta ibeta_derivative(arg,arg,arg) -10 10 +legendre legendre_p(2,arg) -1 1 +legendre legendre_p_prime(2,arg) -1 1 +legendre legendre_q(3,arg) -1 1 +laguerre laguerre(1,3,arg) -10 10 +hermite hermite(2,arg) -10 10 +chebyshev chebyshev_t(1,arg) -10 10 +chebyshev chebyshev_u(2,arg) -10 10 +chebyshev chebyshev_t_prime(3,arg) -10 10 +spherical_harmonics shperical_harmonic(3,3,arg,arg) -10 10 +spherical_harmonics spherical_harmonic_r(2,5,arg,arg) -10 10 +spherical_harmonics spherical_harmonic_i(2,5,arg,arg) -10 10 +gegenbauer gegenbauer(2,arg,arg) -10 10 +gegenbauer gegenbauer_prime(3,arg,arg) -10 10 +gegenbauer gegenbauer_derivative(3,arg,arg,2) -10 10 +jacobi jacobi(2,arg,arg,arg) -10 10 +jacobi jacobi_derivative(2,arg,arg,arg,1) -10 10 +jacobi jacobi_prime(3,arg,arg,arg) -10 10 +jacobi jacobi_double_prime(2,arg,arg,arg) -10 10 +bessel cyl_bessel_j(0.25,arg) 0 10 +bessel cyl_neumann(arg,arg) 0 10 +bessel cyl_bessel_i(0.25,arg) 0 10 +bessel cyl_bessel_k(arg,arg) 0 10 +bessel sph_bessel(2,arg) 0 10 +bessel sph_neumann(1,arg) 0 10 +bessel cyl_bessel_j_prime(arg,arg) 0 10 +bessel cyl_neumann_prime(arg,arg) 0 10 +bessel cyl_bessel_i_prime(arg,arg) 0 10 +bessel cyl_bessel_k_prime(arg,arg) 0 10 +bessel sph_bessel_prime(arg,arg) 0 10 +bessel sph_neumann_prime(arg,arg) 0 10 +hankel cyl_hankel_1(arg,arg) -10 10 +hankel cyl_hankel_2(arg,arg) -10 10 +hankel sph_hankel_1(arg,arg) -10 10 +hankel sph_hankel_2(arg,arg) -10 10 +airy airy_ai(arg) -10 10 +airy airy_bi(arg) -10 10 +airy airy_ai_prime(arg) -1 1 +airy airy_bi_prime(arg) -5 0 +elliptic_integrals ellint_rf(arg,arg,arg) -10 10 +elliptic_integrals ellint_rd(arg,arg,arg) -10 10 +elliptic_integrals ellint_rj(arg,arg,arg,arg) -10 10 +elliptic_integrals ellint_rc(arg,arg) -10 10 +elliptic_integrals ellint_rg(arg,arg,arg) -10 10 +elliptic_integrals ellint_1(arg,arg) -10 10 +elliptic_integrals ellint_2(arg,arg) -10 10 +elliptic_integrals ellint_3(arg,arg,arg) -10 10 +elliptic_integrals ellint_d(arg,arg) -10 10 +jacobi_zeta jacobi_zeta(arg,arg) -10 10 +heuman_lambda heuman_labda(arg,arg) -10 10 +jacobi_elliptic jacobi_cd(arg,arg) -10 10 +jacobi_elliptic jacobi_cn(arg,arg) -10 10 +jacobi_elliptic jacobi_cs(arg,arg) -10 10 +jacobi_elliptic jacobi_dc(arg,arg) -10 10 +jacobi_elliptic jacobi_dn(arg,arg) -10 10 +jacobi_elliptic jacobi_ds(arg,arg) -10 10 +jacobi_elliptic jacobi_nc(arg,arg) -10 10 +jacobi_elliptic jacobi_nd(arg,arg) -10 10 +jacobi_elliptic jacobi_ns(arg,arg) -10 10 +jacobi_elliptic jacobi_sc(arg,arg) -10 10 +jacobi_elliptic jacobi_sd(arg,arg) -10 10 +jacobi_elliptic jacobi_sn(arg,arg) -10 10 +jacobi_theta jacobi_theta1(arg,arg) -10 10 +jacobi_theta jacobi_theta1tau(arg,arg) -10 10 +jacobi_theta jacobi_theta2(arg,arg) -10 10 +jacobi_theta jacobi_theta1tau(arg,arg) -10 10 +jacobi_theta jacobi_theta3(arg,arg) -10 10 +jacobi_theta jacobi_theta3tau(arg,arg) -10 10 +jacobi_theta jacobi_theta3m1(arg,arg) -10 10 +jacobi_theta jacobi_theta3m1tau(arg,arg) -10 10 +jacobi_theta jacobi_theta4(arg,arg) -10 10 +jacobi_theta jacobi_theta4tau(arg,arg) -10 10 +jacobi_theta jacobi_theta4m1(arg,arg) -10 10 +jacobi_theta jacobi_theta4m1tau(arg,arg) -10 10 +lambert_w lambert_w0(arg) -10 10 +lambert_w lambert_wm1(arg) -10 10 +lambert_w lambert_w0_prime(arg) -10 10 +lambert_w lambert_wm1_prime(arg) -10 10 +riemann_zeta zeta(arg) -10 10 +expint expint(arg) -10 10 +hypergeometric hypergeometric_1F0(arg,arg) -10 10 +hypergeometric hypergeometric_0F1(arg,arg) -10 10 +hypergeometric hypergeometric_2F0(arg,arg,arg) -10 10 +hypergeometric hypergeometric_1F1(arg,arg,arg) -10 10 +basic_funcs sin_pi(arg) -10 10 +basic_funcs cos_pi(arg) -10 10 +basic_funcs log1p(arg) -10 10 +basic_funcs expm1(arg) -10 10 +basic_funcs cbrt(arg) -10 10 +basic_funcs sqrt1pm1(arg) -10 10 +basic_funcs powm1(arg,arg) -10 10 +basic_funcs hypot(arg,arg) -10 10 +basic_funcs rsqrt(arg) -10 10 +basic_funcs logaddexp(arg,arg) -10 10 +basic_funcs logsumexp((arg,arg) -10 10 +sinc_pi sinc_pi(arg) -10 10 +sinhc_pi sinhc_pi(arg) -10 10 +owens_t owens_t(arg,arg) -10 10 diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp index a1427a6f8..8945e2da8 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_shperical_harmonic, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp index 152b8e1f5..9899f18a7 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_shperical_harmonic, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp index 1e8142453..9f93093f9 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_shperical_harmonic, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp index 0119ffdcc..852cf4df2 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_shperical_harmonic_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_shperical_harmonic, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp index 18a31038f..e12b6ffe5 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_i, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp index a038420be..21488b4ec 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_i, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp index a9314825c..f16c593da 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_i, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp index bd1f58945..ea62cb52f 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_i_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_i, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp index d9f8aee1e..9dd43a341 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_r, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp index af12a94c3..58ceaaf26 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_OFF_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_OFF #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_r, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp index 3f9a6e384..72fed3d8a 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_cpp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_r, T, bin_float_types) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x; diff --git a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp index 6af9625f5..3be99dcd4 100644 --- a/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp +++ b/test/test_reverse_mode_autodiff_special_functions_compile/spherical_harmonics/test_reverse_mode_autodiff_spherical_harmonic_r_compile_test_ET_ON_mp_types.cpp @@ -1,3 +1,11 @@ +// Copyright Maksym Zhelyeznyakov 2025-2026 +//Distributed under the Boost Software License, Version 1.0. +//(See accompanying file LICENSE_1_0.txt or copy at +// https://www.boost.org/LICENSE_1_0.txt) +// +// This file was generated automatically with math/tests/autogen_rvar_specfun_tests.sh +// DO NOT EDIT MANUALLY + #define BOOST_MATH_REVERSE_MODE_ET_ON #include "../../test_autodiff_reverse.hpp" #include @@ -10,7 +18,7 @@ using namespace rdiff; BOOST_AUTO_TEST_CASE_TEMPLATE(test_spherical_harmonic_r, T, bmp::cpp_bin_float_50) { - RandomSample rng{1, 10}; + RandomSample rng{-10, 10}; T x = rng.next(); rvar x_ad = x;