├── .clang-format ├── .git-blame-ignore-revs ├── .gitattributes ├── .github └── workflows │ ├── format.yml │ ├── gpu_tests.yml │ └── tests.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── LICENSES_bundled.txt ├── README.md ├── include └── xsf │ ├── airy.h │ ├── alg.h │ ├── amos.h │ ├── amos │ └── amos.h │ ├── bessel.h │ ├── beta.h │ ├── binom.h │ ├── cdflib.h │ ├── cephes │ ├── airy.h │ ├── bdtr.h │ ├── besselpoly.h │ ├── beta.h │ ├── cbrt.h │ ├── chbevl.h │ ├── chdtr.h │ ├── const.h │ ├── dd_real.h │ ├── ellie.h │ ├── ellik.h │ ├── ellpe.h │ ├── ellpj.h │ ├── ellpk.h │ ├── erfinv.h │ ├── exp10.h │ ├── exp2.h │ ├── expn.h │ ├── fdtr.h │ ├── fresnl.h │ ├── gamma.h │ ├── gdtr.h │ ├── hyp2f1.h │ ├── hyperg.h │ ├── i0.h │ ├── i1.h │ ├── igam.h │ ├── igam_asymp_coeff.h │ ├── igami.h │ ├── incbet.h │ ├── incbi.h │ ├── j0.h │ ├── j1.h │ ├── jv.h │ ├── k0.h │ ├── k1.h │ ├── kn.h │ ├── kolmogorov.h │ ├── lanczos.h │ ├── nbdtr.h │ ├── ndtr.h │ ├── ndtri.h │ ├── owens_t.h │ ├── pdtr.h │ ├── poch.h │ ├── polevl.h │ ├── psi.h │ ├── rgamma.h │ ├── round.h │ ├── scipy_iv.h │ ├── shichi.h │ ├── sici.h │ ├── sindg.h │ ├── spence.h │ ├── struve.h │ ├── tandg.h │ ├── trig.h │ ├── tukey.h │ ├── unity.h │ ├── yn.h │ ├── yv.h │ ├── zeta.h │ └── zetac.h │ ├── config.h │ ├── digamma.h │ ├── dual.h │ ├── ellip.h │ ├── erf.h │ ├── error.h │ ├── evalpoly.h │ ├── exp.h │ ├── expint.h │ ├── faddeeva.h │ ├── fp_error_metrics.h │ ├── fresnel.h │ ├── gamma.h │ ├── hyp2f1.h │ ├── iv_ratio.h │ ├── kelvin.h │ ├── lambertw.h │ ├── legendre.h │ ├── log.h │ ├── log_exp.h │ ├── loggamma.h │ ├── mathieu.h │ ├── numbers.h │ ├── numpy.h │ ├── par_cyl.h │ ├── recur.h │ ├── sici.h │ ├── specfun.h │ ├── specfun │ └── specfun.h │ ├── sph_bessel.h │ ├── sph_harm.h │ ├── sphd_wave.h │ ├── stats.h │ ├── struve.h │ ├── third_party │ └── kokkos │ │ └── mdspan.hpp │ ├── tools.h │ ├── trig.h │ ├── wright_bessel.h │ ├── zeta.h │ └── zlog1.h ├── meson.build ├── pixi.lock ├── pixi.toml ├── python_tests ├── .gitignore └── test_cupy.py └── tests ├── CMakeLists.txt ├── Coverage.cmake ├── scipy_special_tests ├── test_airy.cpp ├── test_airye.cpp ├── test_bdtr.cpp ├── test_bdtrc.cpp ├── test_bdtri.cpp ├── test_bei.cpp ├── test_beip.cpp ├── test_ber.cpp ├── test_berp.cpp ├── test_besselpoly.cpp ├── test_beta.cpp ├── test_betaln.cpp ├── test_binom.cpp ├── test_cbrt.cpp ├── test_cem.cpp ├── test_cem_cva.cpp ├── test_chdtr.cpp ├── test_chdtrc.cpp ├── test_chdtri.cpp ├── test_cosdg.cpp ├── test_cosm1.cpp ├── test_cospi.cpp ├── test_cotdg.cpp ├── test_cyl_bessel_i.cpp ├── test_cyl_bessel_i0.cpp ├── test_cyl_bessel_i0e.cpp ├── test_cyl_bessel_i1.cpp ├── test_cyl_bessel_i1e.cpp ├── test_cyl_bessel_ie.cpp ├── test_cyl_bessel_j.cpp ├── test_cyl_bessel_j0.cpp ├── test_cyl_bessel_j1.cpp ├── test_cyl_bessel_je.cpp ├── test_cyl_bessel_k.cpp ├── test_cyl_bessel_k0.cpp ├── test_cyl_bessel_k0e.cpp ├── test_cyl_bessel_k1.cpp ├── test_cyl_bessel_k1e.cpp ├── test_cyl_bessel_ke.cpp ├── test_cyl_bessel_y.cpp ├── test_cyl_bessel_y0.cpp ├── test_cyl_bessel_y1.cpp ├── test_cyl_bessel_ye.cpp ├── test_cyl_hankel_1.cpp ├── test_cyl_hankel_1e.cpp ├── test_cyl_hankel_2.cpp ├── test_cyl_hankel_2e.cpp ├── test_dawsn.cpp ├── test_digamma.cpp ├── test_ellipe.cpp ├── test_ellipeinc.cpp ├── test_ellipj.cpp ├── test_ellipk.cpp ├── test_ellipkinc.cpp ├── test_ellipkm1.cpp ├── test_erf.cpp ├── test_erfc.cpp ├── test_erfcinv.cpp ├── test_erfcx.cpp ├── test_erfi.cpp ├── test_exp1.cpp ├── test_exp10.cpp ├── test_exp2.cpp ├── test_expi.cpp ├── test_expit.cpp ├── test_expm1.cpp ├── test_expn.cpp ├── test_exprel.cpp ├── test_fdtr.cpp ├── test_fdtrc.cpp ├── test_fdtri.cpp ├── test_fresnel.cpp ├── test_gamma.cpp ├── test_gammainc.cpp ├── test_gammaincc.cpp ├── test_gammainccinv.cpp ├── test_gammaincinv.cpp ├── test_gammaln.cpp ├── test_gammasgn.cpp ├── test_gdtr.cpp ├── test_gdtrc.cpp ├── test_gdtrib.cpp ├── test_hyp1f1.cpp ├── test_hyp2f1.cpp ├── test_it1i0k0.cpp ├── test_it1j0y0.cpp ├── test_it2i0k0.cpp ├── test_it2j0y0.cpp ├── test_it2struve0.cpp ├── test_itairy.cpp ├── test_itmodstruve0.cpp ├── test_itstruve0.cpp ├── test_iv_ratio.cpp ├── test_iv_ratio_c.cpp ├── test_kei.cpp ├── test_keip.cpp ├── test_kelvin.cpp ├── test_ker.cpp ├── test_kerp.cpp ├── test_kolmogc.cpp ├── test_kolmogci.cpp ├── test_kolmogi.cpp ├── test_kolmogorov.cpp ├── test_kolmogp.cpp ├── test_lambertw.cpp ├── test_lanczos_sum_expg_scaled.cpp ├── test_lgam1p.cpp ├── test_log1p.cpp ├── test_log1pmx.cpp ├── test_log_expit.cpp ├── test_log_wright_bessel.cpp ├── test_loggamma.cpp ├── test_logit.cpp ├── test_lqmn.cpp ├── test_mcm1.cpp ├── test_mcm2.cpp ├── test_modified_fresnel_minus.cpp ├── test_modified_fresnel_plus.cpp ├── test_msm1.cpp ├── test_msm2.cpp ├── test_nbdtr.cpp ├── test_nbdtrc.cpp ├── test_ndtr.cpp ├── test_ndtri.cpp ├── test_oblate_aswfa.cpp ├── test_oblate_aswfa_nocv.cpp ├── test_oblate_radial1.cpp ├── test_oblate_radial1_nocv.cpp ├── test_oblate_radial2.cpp ├── test_oblate_radial2_nocv.cpp ├── test_owens_t.cpp ├── test_pbdv.cpp ├── test_pbvv.cpp ├── test_pbwa.cpp ├── test_pdtr.cpp ├── test_pdtrc.cpp ├── test_pdtri.cpp ├── test_pmv.cpp ├── test_poch.cpp ├── test_prolate_aswfa.cpp ├── test_prolate_aswfa_nocv.cpp ├── test_prolate_radial1.cpp ├── test_prolate_radial1_nocv.cpp ├── test_prolate_radial2.cpp ├── test_prolate_radial2_nocv.cpp ├── test_prolate_segv.cpp ├── test_radian.cpp ├── test_rgamma.cpp ├── test_riemann_zeta.cpp ├── test_round.cpp ├── test_scaled_exp1.cpp ├── test_sem.cpp ├── test_sem_cva.cpp ├── test_shichi.cpp ├── test_sici.cpp ├── test_sindg.cpp ├── test_sinpi.cpp ├── test_smirnov.cpp ├── test_smirnovc.cpp ├── test_smirnovci.cpp ├── test_smirnovi.cpp ├── test_smirnovp.cpp ├── test_spence.cpp ├── test_struve_h.cpp ├── test_struve_l.cpp ├── test_tandg.cpp ├── test_voigt_profile.cpp ├── test_wofz.cpp ├── test_wright_bessel.cpp ├── test_xlog1py.cpp ├── test_xlogy.cpp ├── test_zeta.cpp └── test_zetac.cpp ├── testing_utils.h └── xsf_tests ├── README.md ├── test_assoc_legendre_p.cpp ├── test_cyl_bessel_k.cpp └── test_itj0y0.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/.clang-format -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # clang-format repo gh-5 2 | b5e297bba45b56af14d6f057002d16efdf27ad59 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/gpu_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/.github/workflows/gpu_tests.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES_bundled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/LICENSES_bundled.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/README.md -------------------------------------------------------------------------------- /include/xsf/airy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/airy.h -------------------------------------------------------------------------------- /include/xsf/alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/alg.h -------------------------------------------------------------------------------- /include/xsf/amos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/amos.h -------------------------------------------------------------------------------- /include/xsf/amos/amos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/amos/amos.h -------------------------------------------------------------------------------- /include/xsf/bessel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/bessel.h -------------------------------------------------------------------------------- /include/xsf/beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/beta.h -------------------------------------------------------------------------------- /include/xsf/binom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/binom.h -------------------------------------------------------------------------------- /include/xsf/cdflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cdflib.h -------------------------------------------------------------------------------- /include/xsf/cephes/airy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/airy.h -------------------------------------------------------------------------------- /include/xsf/cephes/bdtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/bdtr.h -------------------------------------------------------------------------------- /include/xsf/cephes/besselpoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/besselpoly.h -------------------------------------------------------------------------------- /include/xsf/cephes/beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/beta.h -------------------------------------------------------------------------------- /include/xsf/cephes/cbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/cbrt.h -------------------------------------------------------------------------------- /include/xsf/cephes/chbevl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/chbevl.h -------------------------------------------------------------------------------- /include/xsf/cephes/chdtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/chdtr.h -------------------------------------------------------------------------------- /include/xsf/cephes/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/const.h -------------------------------------------------------------------------------- /include/xsf/cephes/dd_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/dd_real.h -------------------------------------------------------------------------------- /include/xsf/cephes/ellie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/ellie.h -------------------------------------------------------------------------------- /include/xsf/cephes/ellik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/ellik.h -------------------------------------------------------------------------------- /include/xsf/cephes/ellpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/ellpe.h -------------------------------------------------------------------------------- /include/xsf/cephes/ellpj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/ellpj.h -------------------------------------------------------------------------------- /include/xsf/cephes/ellpk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/ellpk.h -------------------------------------------------------------------------------- /include/xsf/cephes/erfinv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/erfinv.h -------------------------------------------------------------------------------- /include/xsf/cephes/exp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/exp10.h -------------------------------------------------------------------------------- /include/xsf/cephes/exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/exp2.h -------------------------------------------------------------------------------- /include/xsf/cephes/expn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/expn.h -------------------------------------------------------------------------------- /include/xsf/cephes/fdtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/fdtr.h -------------------------------------------------------------------------------- /include/xsf/cephes/fresnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/fresnl.h -------------------------------------------------------------------------------- /include/xsf/cephes/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/gamma.h -------------------------------------------------------------------------------- /include/xsf/cephes/gdtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/gdtr.h -------------------------------------------------------------------------------- /include/xsf/cephes/hyp2f1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/hyp2f1.h -------------------------------------------------------------------------------- /include/xsf/cephes/hyperg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/hyperg.h -------------------------------------------------------------------------------- /include/xsf/cephes/i0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/i0.h -------------------------------------------------------------------------------- /include/xsf/cephes/i1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/i1.h -------------------------------------------------------------------------------- /include/xsf/cephes/igam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/igam.h -------------------------------------------------------------------------------- /include/xsf/cephes/igam_asymp_coeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/igam_asymp_coeff.h -------------------------------------------------------------------------------- /include/xsf/cephes/igami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/igami.h -------------------------------------------------------------------------------- /include/xsf/cephes/incbet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/incbet.h -------------------------------------------------------------------------------- /include/xsf/cephes/incbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/incbi.h -------------------------------------------------------------------------------- /include/xsf/cephes/j0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/j0.h -------------------------------------------------------------------------------- /include/xsf/cephes/j1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/j1.h -------------------------------------------------------------------------------- /include/xsf/cephes/jv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/jv.h -------------------------------------------------------------------------------- /include/xsf/cephes/k0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/k0.h -------------------------------------------------------------------------------- /include/xsf/cephes/k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/k1.h -------------------------------------------------------------------------------- /include/xsf/cephes/kn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/kn.h -------------------------------------------------------------------------------- /include/xsf/cephes/kolmogorov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/kolmogorov.h -------------------------------------------------------------------------------- /include/xsf/cephes/lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/lanczos.h -------------------------------------------------------------------------------- /include/xsf/cephes/nbdtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/nbdtr.h -------------------------------------------------------------------------------- /include/xsf/cephes/ndtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/ndtr.h -------------------------------------------------------------------------------- /include/xsf/cephes/ndtri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/ndtri.h -------------------------------------------------------------------------------- /include/xsf/cephes/owens_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/owens_t.h -------------------------------------------------------------------------------- /include/xsf/cephes/pdtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/pdtr.h -------------------------------------------------------------------------------- /include/xsf/cephes/poch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/poch.h -------------------------------------------------------------------------------- /include/xsf/cephes/polevl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/polevl.h -------------------------------------------------------------------------------- /include/xsf/cephes/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/psi.h -------------------------------------------------------------------------------- /include/xsf/cephes/rgamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/rgamma.h -------------------------------------------------------------------------------- /include/xsf/cephes/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/round.h -------------------------------------------------------------------------------- /include/xsf/cephes/scipy_iv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/scipy_iv.h -------------------------------------------------------------------------------- /include/xsf/cephes/shichi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/shichi.h -------------------------------------------------------------------------------- /include/xsf/cephes/sici.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/sici.h -------------------------------------------------------------------------------- /include/xsf/cephes/sindg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/sindg.h -------------------------------------------------------------------------------- /include/xsf/cephes/spence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/spence.h -------------------------------------------------------------------------------- /include/xsf/cephes/struve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/struve.h -------------------------------------------------------------------------------- /include/xsf/cephes/tandg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/tandg.h -------------------------------------------------------------------------------- /include/xsf/cephes/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/trig.h -------------------------------------------------------------------------------- /include/xsf/cephes/tukey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/tukey.h -------------------------------------------------------------------------------- /include/xsf/cephes/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/unity.h -------------------------------------------------------------------------------- /include/xsf/cephes/yn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/yn.h -------------------------------------------------------------------------------- /include/xsf/cephes/yv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/yv.h -------------------------------------------------------------------------------- /include/xsf/cephes/zeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/zeta.h -------------------------------------------------------------------------------- /include/xsf/cephes/zetac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/cephes/zetac.h -------------------------------------------------------------------------------- /include/xsf/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/config.h -------------------------------------------------------------------------------- /include/xsf/digamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/digamma.h -------------------------------------------------------------------------------- /include/xsf/dual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/dual.h -------------------------------------------------------------------------------- /include/xsf/ellip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/ellip.h -------------------------------------------------------------------------------- /include/xsf/erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/erf.h -------------------------------------------------------------------------------- /include/xsf/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/error.h -------------------------------------------------------------------------------- /include/xsf/evalpoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/evalpoly.h -------------------------------------------------------------------------------- /include/xsf/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/exp.h -------------------------------------------------------------------------------- /include/xsf/expint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/expint.h -------------------------------------------------------------------------------- /include/xsf/faddeeva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/faddeeva.h -------------------------------------------------------------------------------- /include/xsf/fp_error_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/fp_error_metrics.h -------------------------------------------------------------------------------- /include/xsf/fresnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/fresnel.h -------------------------------------------------------------------------------- /include/xsf/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/gamma.h -------------------------------------------------------------------------------- /include/xsf/hyp2f1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/hyp2f1.h -------------------------------------------------------------------------------- /include/xsf/iv_ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/iv_ratio.h -------------------------------------------------------------------------------- /include/xsf/kelvin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/kelvin.h -------------------------------------------------------------------------------- /include/xsf/lambertw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/lambertw.h -------------------------------------------------------------------------------- /include/xsf/legendre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/legendre.h -------------------------------------------------------------------------------- /include/xsf/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/log.h -------------------------------------------------------------------------------- /include/xsf/log_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/log_exp.h -------------------------------------------------------------------------------- /include/xsf/loggamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/loggamma.h -------------------------------------------------------------------------------- /include/xsf/mathieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/mathieu.h -------------------------------------------------------------------------------- /include/xsf/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/numbers.h -------------------------------------------------------------------------------- /include/xsf/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/numpy.h -------------------------------------------------------------------------------- /include/xsf/par_cyl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/par_cyl.h -------------------------------------------------------------------------------- /include/xsf/recur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/recur.h -------------------------------------------------------------------------------- /include/xsf/sici.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/sici.h -------------------------------------------------------------------------------- /include/xsf/specfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/specfun.h -------------------------------------------------------------------------------- /include/xsf/specfun/specfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/specfun/specfun.h -------------------------------------------------------------------------------- /include/xsf/sph_bessel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/sph_bessel.h -------------------------------------------------------------------------------- /include/xsf/sph_harm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/sph_harm.h -------------------------------------------------------------------------------- /include/xsf/sphd_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/sphd_wave.h -------------------------------------------------------------------------------- /include/xsf/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/stats.h -------------------------------------------------------------------------------- /include/xsf/struve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/struve.h -------------------------------------------------------------------------------- /include/xsf/third_party/kokkos/mdspan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/third_party/kokkos/mdspan.hpp -------------------------------------------------------------------------------- /include/xsf/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/tools.h -------------------------------------------------------------------------------- /include/xsf/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/trig.h -------------------------------------------------------------------------------- /include/xsf/wright_bessel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/wright_bessel.h -------------------------------------------------------------------------------- /include/xsf/zeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/zeta.h -------------------------------------------------------------------------------- /include/xsf/zlog1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/include/xsf/zlog1.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/meson.build -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/pixi.lock -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/pixi.toml -------------------------------------------------------------------------------- /python_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/python_tests/.gitignore -------------------------------------------------------------------------------- /python_tests/test_cupy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/python_tests/test_cupy.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Coverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/Coverage.cmake -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_airy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_airy.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_airye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_airye.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_bdtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_bdtr.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_bdtrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_bdtrc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_bdtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_bdtri.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_bei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_bei.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_beip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_beip.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ber.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_berp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_berp.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_besselpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_besselpoly.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_beta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_beta.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_betaln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_betaln.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_binom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_binom.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cbrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cbrt.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cem.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cem_cva.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cem_cva.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_chdtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_chdtr.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_chdtrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_chdtrc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_chdtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_chdtri.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cosdg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cosdg.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cosm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cosm1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cospi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cospi.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cotdg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cotdg.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_i.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_i0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_i0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_i0e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_i0e.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_i1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_i1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_i1e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_i1e.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_ie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_ie.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_j.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_j0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_j0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_j1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_j1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_je.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_je.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_k.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_k0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_k0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_k0e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_k0e.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_k1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_k1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_k1e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_k1e.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_ke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_ke.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_y.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_y0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_y0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_y1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_y1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_bessel_ye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_bessel_ye.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_hankel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_hankel_1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_hankel_1e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_hankel_1e.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_hankel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_hankel_2.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_cyl_hankel_2e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_cyl_hankel_2e.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_dawsn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_dawsn.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_digamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_digamma.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ellipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ellipe.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ellipeinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ellipeinc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ellipj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ellipj.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ellipk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ellipk.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ellipkinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ellipkinc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ellipkm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ellipkm1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_erf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_erf.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_erfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_erfc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_erfcinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_erfcinv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_erfcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_erfcx.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_erfi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_erfi.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_exp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_exp1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_exp10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_exp10.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_exp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_exp2.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_expi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_expi.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_expit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_expit.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_expm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_expm1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_expn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_expn.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_exprel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_exprel.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_fdtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_fdtr.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_fdtrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_fdtrc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_fdtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_fdtri.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_fresnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_fresnel.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gamma.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gammainc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gammainc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gammaincc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gammaincc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gammainccinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gammainccinv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gammaincinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gammaincinv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gammaln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gammaln.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gammasgn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gammasgn.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gdtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gdtr.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gdtrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gdtrc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_gdtrib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_gdtrib.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_hyp1f1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_hyp1f1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_hyp2f1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_hyp2f1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_it1i0k0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_it1i0k0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_it1j0y0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_it1j0y0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_it2i0k0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_it2i0k0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_it2j0y0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_it2j0y0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_it2struve0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_it2struve0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_itairy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_itairy.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_itmodstruve0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_itmodstruve0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_itstruve0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_itstruve0.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_iv_ratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_iv_ratio.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_iv_ratio_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_iv_ratio_c.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kei.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_keip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_keip.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kelvin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kelvin.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ker.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kerp.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kolmogc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kolmogc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kolmogci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kolmogci.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kolmogi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kolmogi.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kolmogorov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kolmogorov.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_kolmogp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_kolmogp.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_lambertw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_lambertw.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_lanczos_sum_expg_scaled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_lanczos_sum_expg_scaled.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_lgam1p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_lgam1p.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_log1p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_log1p.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_log1pmx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_log1pmx.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_log_expit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_log_expit.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_log_wright_bessel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_log_wright_bessel.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_loggamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_loggamma.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_logit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_logit.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_lqmn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_lqmn.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_mcm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_mcm1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_mcm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_mcm2.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_modified_fresnel_minus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_modified_fresnel_minus.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_modified_fresnel_plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_modified_fresnel_plus.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_msm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_msm1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_msm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_msm2.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_nbdtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_nbdtr.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_nbdtrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_nbdtrc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ndtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ndtr.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_ndtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_ndtri.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_oblate_aswfa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_oblate_aswfa.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_oblate_aswfa_nocv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_oblate_aswfa_nocv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_oblate_radial1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_oblate_radial1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_oblate_radial1_nocv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_oblate_radial1_nocv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_oblate_radial2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_oblate_radial2.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_oblate_radial2_nocv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_oblate_radial2_nocv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_owens_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_owens_t.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_pbdv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_pbdv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_pbvv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_pbvv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_pbwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_pbwa.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_pdtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_pdtr.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_pdtrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_pdtrc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_pdtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_pdtri.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_pmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_pmv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_poch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_poch.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_prolate_aswfa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_prolate_aswfa.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_prolate_aswfa_nocv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_prolate_aswfa_nocv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_prolate_radial1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_prolate_radial1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_prolate_radial1_nocv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_prolate_radial1_nocv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_prolate_radial2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_prolate_radial2.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_prolate_radial2_nocv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_prolate_radial2_nocv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_prolate_segv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_prolate_segv.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_radian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_radian.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_rgamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_rgamma.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_riemann_zeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_riemann_zeta.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_round.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_scaled_exp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_scaled_exp1.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_sem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_sem.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_sem_cva.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_sem_cva.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_shichi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_shichi.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_sici.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_sici.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_sindg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_sindg.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_sinpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_sinpi.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_smirnov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_smirnov.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_smirnovc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_smirnovc.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_smirnovci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_smirnovci.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_smirnovi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_smirnovi.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_smirnovp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_smirnovp.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_spence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_spence.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_struve_h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_struve_h.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_struve_l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_struve_l.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_tandg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_tandg.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_voigt_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_voigt_profile.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_wofz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_wofz.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_wright_bessel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_wright_bessel.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_xlog1py.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_xlog1py.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_xlogy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_xlogy.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_zeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_zeta.cpp -------------------------------------------------------------------------------- /tests/scipy_special_tests/test_zetac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/scipy_special_tests/test_zetac.cpp -------------------------------------------------------------------------------- /tests/testing_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/testing_utils.h -------------------------------------------------------------------------------- /tests/xsf_tests/README.md: -------------------------------------------------------------------------------- 1 | These tests are independent of SciPy. 2 | -------------------------------------------------------------------------------- /tests/xsf_tests/test_assoc_legendre_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/xsf_tests/test_assoc_legendre_p.cpp -------------------------------------------------------------------------------- /tests/xsf_tests/test_cyl_bessel_k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/xsf_tests/test_cyl_bessel_k.cpp -------------------------------------------------------------------------------- /tests/xsf_tests/test_itj0y0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scipy/xsf/HEAD/tests/xsf_tests/test_itj0y0.cpp --------------------------------------------------------------------------------