├── .clang-tidy ├── .github └── workflows │ ├── coverage.yml │ └── test.yml ├── CITATION.cff ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples ├── example.F90 ├── example.c └── example.cpp ├── src ├── CMakeLists.txt ├── c │ ├── CMakeLists.txt │ ├── Cl2.c │ ├── Cl2.h │ ├── Cl3.c │ ├── Cl3.h │ ├── Cl4.c │ ├── Cl4.h │ ├── Cl5.c │ ├── Cl5.h │ ├── Cl6.c │ ├── Cl6.h │ ├── Li2.c │ ├── Li2.h │ ├── Li3.c │ ├── Li3.h │ ├── Li4.c │ ├── Li4.h │ ├── Li5.c │ ├── Li5.h │ ├── Li6.c │ ├── Li6.h │ ├── log.c │ └── log.h ├── cpp │ ├── CMakeLists.txt │ ├── Cl.cpp │ ├── Cl.hpp │ ├── Cl1.cpp │ ├── Cl1.hpp │ ├── Cl2.cpp │ ├── Cl2.hpp │ ├── Cl3.cpp │ ├── Cl3.hpp │ ├── Cl4.cpp │ ├── Cl4.hpp │ ├── Cl5.cpp │ ├── Cl5.hpp │ ├── Cl6.cpp │ ├── Cl6.hpp │ ├── Li.cpp │ ├── Li.hpp │ ├── Li2.cpp │ ├── Li2.hpp │ ├── Li3.cpp │ ├── Li3.hpp │ ├── Li4.cpp │ ├── Li4.hpp │ ├── Li5.cpp │ ├── Li5.hpp │ ├── Li6.cpp │ ├── Li6.hpp │ ├── Sl.cpp │ ├── Sl.hpp │ ├── eta.cpp │ ├── eta.hpp │ ├── factorial.cpp │ ├── factorial.hpp │ ├── harmonic.cpp │ ├── harmonic.hpp │ ├── horner.hpp │ ├── log.hpp │ ├── zeta.cpp │ └── zeta.hpp ├── fortran │ ├── CMakeLists.txt │ ├── Cl2.f90 │ ├── Cl2.fh │ ├── Cl3.f90 │ ├── Cl3.fh │ ├── Cl4.f90 │ ├── Cl4.fh │ ├── Cl5.f90 │ ├── Cl5.fh │ ├── Cl6.f90 │ ├── Cl6.fh │ ├── Li2.f90 │ ├── Li2.fh │ ├── Li3.f90 │ ├── Li3.fh │ ├── Li4.f90 │ ├── Li4.fh │ ├── Li5.f90 │ ├── Li5.fh │ ├── Li6.f90 │ ├── Li6.fh │ └── log.f90 └── version.h └── test ├── CMakeLists.txt ├── alt ├── CMakeLists.txt ├── README.md ├── algorithm_327 │ ├── CMakeLists.txt │ └── algorithm_327.c ├── algorithm_490 │ ├── CMakeLists.txt │ └── algorithm_490.c ├── alt.c ├── alt.h ├── babar │ ├── CMakeLists.txt │ └── babar.c ├── bernoulli │ ├── CMakeLists.txt │ └── bernoulli.c ├── cephes │ ├── CMakeLists.txt │ └── cephes.c ├── feynhiggs │ ├── CMakeLists.txt │ └── feynhiggs.c ├── fortran77 │ └── Li2.f ├── hassani │ ├── CMakeLists.txt │ └── hassani.c ├── hdecay │ ├── CMakeLists.txt │ └── hdecay.c ├── hollik │ ├── CMakeLists.txt │ └── hollik.c ├── koelbig │ ├── CMakeLists.txt │ └── koelbig.c ├── morris │ ├── CMakeLists.txt │ └── morris.c ├── pade │ ├── CMakeLists.txt │ └── pade.c ├── pythia │ ├── CMakeLists.txt │ └── pythia.c ├── sherpa │ ├── CMakeLists.txt │ └── sherpa.c ├── spheno │ ├── CMakeLists.txt │ └── spheno.c ├── tsil │ ├── CMakeLists.txt │ ├── dilog.c │ ├── trilog.c │ ├── tsil.h │ └── tsil_cpp.h └── wu │ ├── CMakeLists.txt │ └── wu.c ├── bench.hpp ├── bench_Cl.cpp ├── bench_Li.cpp ├── bench_Sl.cpp ├── c_wrappers.c ├── c_wrappers.h ├── data ├── Cl1.txt ├── Cl10.txt ├── Cl1000.txt ├── Cl1000000.txt ├── Cl1001.txt ├── Cl11.txt ├── Cl12.txt ├── Cl13.txt ├── Cl14.txt ├── Cl15.txt ├── Cl16.txt ├── Cl2.txt ├── Cl3.txt ├── Cl4.txt ├── Cl5.txt ├── Cl6.txt ├── Cl7.txt ├── Cl8.txt ├── Cl9.txt ├── Li-1.txt ├── Li-10.txt ├── Li-100.txt ├── Li-2.txt ├── Li-3.txt ├── Li-4.txt ├── Li-5.txt ├── Li-6.txt ├── Li-7.txt ├── Li-8.txt ├── Li-9.txt ├── Li0.txt ├── Li1.txt ├── Li100.txt ├── Li2.txt ├── Li3.txt ├── Li4.txt ├── Li5.txt ├── Li6.txt ├── Sl1.txt ├── Sl10.txt ├── Sl1000.txt ├── Sl1001.txt ├── Sl11.txt ├── Sl12.txt ├── Sl13.txt ├── Sl14.txt ├── Sl15.txt ├── Sl16.txt ├── Sl17.txt ├── Sl18.txt ├── Sl19.txt ├── Sl2.txt ├── Sl20.txt ├── Sl21.txt ├── Sl22.txt ├── Sl23.txt ├── Sl24.txt ├── Sl25.txt ├── Sl26.txt ├── Sl27.txt ├── Sl28.txt ├── Sl29.txt ├── Sl3.txt ├── Sl30.txt ├── Sl31.txt ├── Sl4.txt ├── Sl5.txt ├── Sl6.txt ├── Sl7.txt ├── Sl8.txt └── Sl9.txt ├── doctest.h ├── fortran_wrappers.f90 ├── fortran_wrappers.h ├── generate_data_Cl.m ├── generate_data_Li.m ├── math ├── clausenBernoulli.m ├── clausenCheby.m ├── clausenMinimaxApprox.m ├── clausenWu.m ├── dilogCheby.m ├── dilogMinimaxApprox.m ├── dilogRelations.m ├── dilogRemezApprox.m ├── polylog.m ├── tetralogMinimaxApprox.m └── trilogMinimaxApprox.m ├── read_data.hpp ├── stopwatch.hpp ├── test.hpp ├── test_Cl.cpp ├── test_Cl1.cpp ├── test_Cl2.cpp ├── test_Cl3.cpp ├── test_Cl4.cpp ├── test_Cl5.cpp ├── test_Cl6.cpp ├── test_Li.cpp ├── test_Li2.cpp ├── test_Li3.cpp ├── test_Li4.cpp ├── test_Li5.cpp ├── test_Li6.cpp ├── test_Sl.cpp ├── test_eta.cpp ├── test_example.cpp ├── test_factorial.cpp ├── test_harmonic.cpp ├── test_log.cpp ├── test_version.cpp └── test_zeta.cpp /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/examples/example.F90 -------------------------------------------------------------------------------- /examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/examples/example.c -------------------------------------------------------------------------------- /examples/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/examples/example.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/CMakeLists.txt -------------------------------------------------------------------------------- /src/c/Cl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl2.c -------------------------------------------------------------------------------- /src/c/Cl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl2.h -------------------------------------------------------------------------------- /src/c/Cl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl3.c -------------------------------------------------------------------------------- /src/c/Cl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl3.h -------------------------------------------------------------------------------- /src/c/Cl4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl4.c -------------------------------------------------------------------------------- /src/c/Cl4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl4.h -------------------------------------------------------------------------------- /src/c/Cl5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl5.c -------------------------------------------------------------------------------- /src/c/Cl5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl5.h -------------------------------------------------------------------------------- /src/c/Cl6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl6.c -------------------------------------------------------------------------------- /src/c/Cl6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Cl6.h -------------------------------------------------------------------------------- /src/c/Li2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li2.c -------------------------------------------------------------------------------- /src/c/Li2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li2.h -------------------------------------------------------------------------------- /src/c/Li3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li3.c -------------------------------------------------------------------------------- /src/c/Li3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li3.h -------------------------------------------------------------------------------- /src/c/Li4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li4.c -------------------------------------------------------------------------------- /src/c/Li4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li4.h -------------------------------------------------------------------------------- /src/c/Li5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li5.c -------------------------------------------------------------------------------- /src/c/Li5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li5.h -------------------------------------------------------------------------------- /src/c/Li6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li6.c -------------------------------------------------------------------------------- /src/c/Li6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/Li6.h -------------------------------------------------------------------------------- /src/c/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/log.c -------------------------------------------------------------------------------- /src/c/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/c/log.h -------------------------------------------------------------------------------- /src/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/cpp/Cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl.cpp -------------------------------------------------------------------------------- /src/cpp/Cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl.hpp -------------------------------------------------------------------------------- /src/cpp/Cl1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl1.cpp -------------------------------------------------------------------------------- /src/cpp/Cl1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl1.hpp -------------------------------------------------------------------------------- /src/cpp/Cl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl2.cpp -------------------------------------------------------------------------------- /src/cpp/Cl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl2.hpp -------------------------------------------------------------------------------- /src/cpp/Cl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl3.cpp -------------------------------------------------------------------------------- /src/cpp/Cl3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl3.hpp -------------------------------------------------------------------------------- /src/cpp/Cl4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl4.cpp -------------------------------------------------------------------------------- /src/cpp/Cl4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl4.hpp -------------------------------------------------------------------------------- /src/cpp/Cl5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl5.cpp -------------------------------------------------------------------------------- /src/cpp/Cl5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl5.hpp -------------------------------------------------------------------------------- /src/cpp/Cl6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl6.cpp -------------------------------------------------------------------------------- /src/cpp/Cl6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Cl6.hpp -------------------------------------------------------------------------------- /src/cpp/Li.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li.cpp -------------------------------------------------------------------------------- /src/cpp/Li.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li.hpp -------------------------------------------------------------------------------- /src/cpp/Li2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li2.cpp -------------------------------------------------------------------------------- /src/cpp/Li2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li2.hpp -------------------------------------------------------------------------------- /src/cpp/Li3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li3.cpp -------------------------------------------------------------------------------- /src/cpp/Li3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li3.hpp -------------------------------------------------------------------------------- /src/cpp/Li4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li4.cpp -------------------------------------------------------------------------------- /src/cpp/Li4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li4.hpp -------------------------------------------------------------------------------- /src/cpp/Li5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li5.cpp -------------------------------------------------------------------------------- /src/cpp/Li5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li5.hpp -------------------------------------------------------------------------------- /src/cpp/Li6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li6.cpp -------------------------------------------------------------------------------- /src/cpp/Li6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Li6.hpp -------------------------------------------------------------------------------- /src/cpp/Sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Sl.cpp -------------------------------------------------------------------------------- /src/cpp/Sl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/Sl.hpp -------------------------------------------------------------------------------- /src/cpp/eta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/eta.cpp -------------------------------------------------------------------------------- /src/cpp/eta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/eta.hpp -------------------------------------------------------------------------------- /src/cpp/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/factorial.cpp -------------------------------------------------------------------------------- /src/cpp/factorial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/factorial.hpp -------------------------------------------------------------------------------- /src/cpp/harmonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/harmonic.cpp -------------------------------------------------------------------------------- /src/cpp/harmonic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/harmonic.hpp -------------------------------------------------------------------------------- /src/cpp/horner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/horner.hpp -------------------------------------------------------------------------------- /src/cpp/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/log.hpp -------------------------------------------------------------------------------- /src/cpp/zeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/zeta.cpp -------------------------------------------------------------------------------- /src/cpp/zeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/cpp/zeta.hpp -------------------------------------------------------------------------------- /src/fortran/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/CMakeLists.txt -------------------------------------------------------------------------------- /src/fortran/Cl2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl2.f90 -------------------------------------------------------------------------------- /src/fortran/Cl2.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl2.fh -------------------------------------------------------------------------------- /src/fortran/Cl3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl3.f90 -------------------------------------------------------------------------------- /src/fortran/Cl3.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl3.fh -------------------------------------------------------------------------------- /src/fortran/Cl4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl4.f90 -------------------------------------------------------------------------------- /src/fortran/Cl4.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl4.fh -------------------------------------------------------------------------------- /src/fortran/Cl5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl5.f90 -------------------------------------------------------------------------------- /src/fortran/Cl5.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl5.fh -------------------------------------------------------------------------------- /src/fortran/Cl6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl6.f90 -------------------------------------------------------------------------------- /src/fortran/Cl6.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Cl6.fh -------------------------------------------------------------------------------- /src/fortran/Li2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li2.f90 -------------------------------------------------------------------------------- /src/fortran/Li2.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li2.fh -------------------------------------------------------------------------------- /src/fortran/Li3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li3.f90 -------------------------------------------------------------------------------- /src/fortran/Li3.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li3.fh -------------------------------------------------------------------------------- /src/fortran/Li4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li4.f90 -------------------------------------------------------------------------------- /src/fortran/Li4.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li4.fh -------------------------------------------------------------------------------- /src/fortran/Li5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li5.f90 -------------------------------------------------------------------------------- /src/fortran/Li5.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li5.fh -------------------------------------------------------------------------------- /src/fortran/Li6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li6.f90 -------------------------------------------------------------------------------- /src/fortran/Li6.fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/Li6.fh -------------------------------------------------------------------------------- /src/fortran/log.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/fortran/log.f90 -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/src/version.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/README.md -------------------------------------------------------------------------------- /test/alt/algorithm_327/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/algorithm_327/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/algorithm_327/algorithm_327.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/algorithm_327/algorithm_327.c -------------------------------------------------------------------------------- /test/alt/algorithm_490/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/algorithm_490/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/algorithm_490/algorithm_490.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/algorithm_490/algorithm_490.c -------------------------------------------------------------------------------- /test/alt/alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/alt.c -------------------------------------------------------------------------------- /test/alt/alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/alt.h -------------------------------------------------------------------------------- /test/alt/babar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/babar/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/babar/babar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/babar/babar.c -------------------------------------------------------------------------------- /test/alt/bernoulli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/bernoulli/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/bernoulli/bernoulli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/bernoulli/bernoulli.c -------------------------------------------------------------------------------- /test/alt/cephes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/cephes/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/cephes/cephes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/cephes/cephes.c -------------------------------------------------------------------------------- /test/alt/feynhiggs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/feynhiggs/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/feynhiggs/feynhiggs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/feynhiggs/feynhiggs.c -------------------------------------------------------------------------------- /test/alt/fortran77/Li2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/fortran77/Li2.f -------------------------------------------------------------------------------- /test/alt/hassani/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/hassani/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/hassani/hassani.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/hassani/hassani.c -------------------------------------------------------------------------------- /test/alt/hdecay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/hdecay/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/hdecay/hdecay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/hdecay/hdecay.c -------------------------------------------------------------------------------- /test/alt/hollik/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/hollik/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/hollik/hollik.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/hollik/hollik.c -------------------------------------------------------------------------------- /test/alt/koelbig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/koelbig/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/koelbig/koelbig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/koelbig/koelbig.c -------------------------------------------------------------------------------- /test/alt/morris/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/morris/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/morris/morris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/morris/morris.c -------------------------------------------------------------------------------- /test/alt/pade/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/pade/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/pade/pade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/pade/pade.c -------------------------------------------------------------------------------- /test/alt/pythia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/pythia/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/pythia/pythia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/pythia/pythia.c -------------------------------------------------------------------------------- /test/alt/sherpa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/sherpa/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/sherpa/sherpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/sherpa/sherpa.c -------------------------------------------------------------------------------- /test/alt/spheno/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/spheno/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/spheno/spheno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/spheno/spheno.c -------------------------------------------------------------------------------- /test/alt/tsil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/tsil/CMakeLists.txt -------------------------------------------------------------------------------- /test/alt/tsil/dilog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/tsil/dilog.c -------------------------------------------------------------------------------- /test/alt/tsil/trilog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/tsil/trilog.c -------------------------------------------------------------------------------- /test/alt/tsil/tsil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/tsil/tsil.h -------------------------------------------------------------------------------- /test/alt/tsil/tsil_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/tsil/tsil_cpp.h -------------------------------------------------------------------------------- /test/alt/wu/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(wu 2 | wu.c 3 | ) 4 | 5 | target_include_directories(wu PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) 6 | -------------------------------------------------------------------------------- /test/alt/wu/wu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/alt/wu/wu.c -------------------------------------------------------------------------------- /test/bench.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/bench.hpp -------------------------------------------------------------------------------- /test/bench_Cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/bench_Cl.cpp -------------------------------------------------------------------------------- /test/bench_Li.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/bench_Li.cpp -------------------------------------------------------------------------------- /test/bench_Sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/bench_Sl.cpp -------------------------------------------------------------------------------- /test/c_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/c_wrappers.c -------------------------------------------------------------------------------- /test/c_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/c_wrappers.h -------------------------------------------------------------------------------- /test/data/Cl1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl1.txt -------------------------------------------------------------------------------- /test/data/Cl10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl10.txt -------------------------------------------------------------------------------- /test/data/Cl1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl1000.txt -------------------------------------------------------------------------------- /test/data/Cl1000000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl1000000.txt -------------------------------------------------------------------------------- /test/data/Cl1001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl1001.txt -------------------------------------------------------------------------------- /test/data/Cl11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl11.txt -------------------------------------------------------------------------------- /test/data/Cl12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl12.txt -------------------------------------------------------------------------------- /test/data/Cl13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl13.txt -------------------------------------------------------------------------------- /test/data/Cl14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl14.txt -------------------------------------------------------------------------------- /test/data/Cl15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl15.txt -------------------------------------------------------------------------------- /test/data/Cl16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl16.txt -------------------------------------------------------------------------------- /test/data/Cl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl2.txt -------------------------------------------------------------------------------- /test/data/Cl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl3.txt -------------------------------------------------------------------------------- /test/data/Cl4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl4.txt -------------------------------------------------------------------------------- /test/data/Cl5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl5.txt -------------------------------------------------------------------------------- /test/data/Cl6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl6.txt -------------------------------------------------------------------------------- /test/data/Cl7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl7.txt -------------------------------------------------------------------------------- /test/data/Cl8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl8.txt -------------------------------------------------------------------------------- /test/data/Cl9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Cl9.txt -------------------------------------------------------------------------------- /test/data/Li-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-1.txt -------------------------------------------------------------------------------- /test/data/Li-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-10.txt -------------------------------------------------------------------------------- /test/data/Li-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-100.txt -------------------------------------------------------------------------------- /test/data/Li-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-2.txt -------------------------------------------------------------------------------- /test/data/Li-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-3.txt -------------------------------------------------------------------------------- /test/data/Li-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-4.txt -------------------------------------------------------------------------------- /test/data/Li-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-5.txt -------------------------------------------------------------------------------- /test/data/Li-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-6.txt -------------------------------------------------------------------------------- /test/data/Li-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-7.txt -------------------------------------------------------------------------------- /test/data/Li-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-8.txt -------------------------------------------------------------------------------- /test/data/Li-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li-9.txt -------------------------------------------------------------------------------- /test/data/Li0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li0.txt -------------------------------------------------------------------------------- /test/data/Li1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li1.txt -------------------------------------------------------------------------------- /test/data/Li100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li100.txt -------------------------------------------------------------------------------- /test/data/Li2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li2.txt -------------------------------------------------------------------------------- /test/data/Li3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li3.txt -------------------------------------------------------------------------------- /test/data/Li4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li4.txt -------------------------------------------------------------------------------- /test/data/Li5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li5.txt -------------------------------------------------------------------------------- /test/data/Li6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Li6.txt -------------------------------------------------------------------------------- /test/data/Sl1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl1.txt -------------------------------------------------------------------------------- /test/data/Sl10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl10.txt -------------------------------------------------------------------------------- /test/data/Sl1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl1000.txt -------------------------------------------------------------------------------- /test/data/Sl1001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl1001.txt -------------------------------------------------------------------------------- /test/data/Sl11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl11.txt -------------------------------------------------------------------------------- /test/data/Sl12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl12.txt -------------------------------------------------------------------------------- /test/data/Sl13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl13.txt -------------------------------------------------------------------------------- /test/data/Sl14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl14.txt -------------------------------------------------------------------------------- /test/data/Sl15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl15.txt -------------------------------------------------------------------------------- /test/data/Sl16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl16.txt -------------------------------------------------------------------------------- /test/data/Sl17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl17.txt -------------------------------------------------------------------------------- /test/data/Sl18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl18.txt -------------------------------------------------------------------------------- /test/data/Sl19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl19.txt -------------------------------------------------------------------------------- /test/data/Sl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl2.txt -------------------------------------------------------------------------------- /test/data/Sl20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl20.txt -------------------------------------------------------------------------------- /test/data/Sl21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl21.txt -------------------------------------------------------------------------------- /test/data/Sl22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl22.txt -------------------------------------------------------------------------------- /test/data/Sl23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl23.txt -------------------------------------------------------------------------------- /test/data/Sl24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl24.txt -------------------------------------------------------------------------------- /test/data/Sl25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl25.txt -------------------------------------------------------------------------------- /test/data/Sl26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl26.txt -------------------------------------------------------------------------------- /test/data/Sl27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl27.txt -------------------------------------------------------------------------------- /test/data/Sl28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl28.txt -------------------------------------------------------------------------------- /test/data/Sl29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl29.txt -------------------------------------------------------------------------------- /test/data/Sl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl3.txt -------------------------------------------------------------------------------- /test/data/Sl30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl30.txt -------------------------------------------------------------------------------- /test/data/Sl31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl31.txt -------------------------------------------------------------------------------- /test/data/Sl4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl4.txt -------------------------------------------------------------------------------- /test/data/Sl5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl5.txt -------------------------------------------------------------------------------- /test/data/Sl6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl6.txt -------------------------------------------------------------------------------- /test/data/Sl7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl7.txt -------------------------------------------------------------------------------- /test/data/Sl8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl8.txt -------------------------------------------------------------------------------- /test/data/Sl9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/data/Sl9.txt -------------------------------------------------------------------------------- /test/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/doctest.h -------------------------------------------------------------------------------- /test/fortran_wrappers.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/fortran_wrappers.f90 -------------------------------------------------------------------------------- /test/fortran_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/fortran_wrappers.h -------------------------------------------------------------------------------- /test/generate_data_Cl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/generate_data_Cl.m -------------------------------------------------------------------------------- /test/generate_data_Li.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/generate_data_Li.m -------------------------------------------------------------------------------- /test/math/clausenBernoulli.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/clausenBernoulli.m -------------------------------------------------------------------------------- /test/math/clausenCheby.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/clausenCheby.m -------------------------------------------------------------------------------- /test/math/clausenMinimaxApprox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/clausenMinimaxApprox.m -------------------------------------------------------------------------------- /test/math/clausenWu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/clausenWu.m -------------------------------------------------------------------------------- /test/math/dilogCheby.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/dilogCheby.m -------------------------------------------------------------------------------- /test/math/dilogMinimaxApprox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/dilogMinimaxApprox.m -------------------------------------------------------------------------------- /test/math/dilogRelations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/dilogRelations.m -------------------------------------------------------------------------------- /test/math/dilogRemezApprox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/dilogRemezApprox.m -------------------------------------------------------------------------------- /test/math/polylog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/polylog.m -------------------------------------------------------------------------------- /test/math/tetralogMinimaxApprox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/tetralogMinimaxApprox.m -------------------------------------------------------------------------------- /test/math/trilogMinimaxApprox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/math/trilogMinimaxApprox.m -------------------------------------------------------------------------------- /test/read_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/read_data.hpp -------------------------------------------------------------------------------- /test/stopwatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/stopwatch.hpp -------------------------------------------------------------------------------- /test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test.hpp -------------------------------------------------------------------------------- /test/test_Cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Cl.cpp -------------------------------------------------------------------------------- /test/test_Cl1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Cl1.cpp -------------------------------------------------------------------------------- /test/test_Cl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Cl2.cpp -------------------------------------------------------------------------------- /test/test_Cl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Cl3.cpp -------------------------------------------------------------------------------- /test/test_Cl4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Cl4.cpp -------------------------------------------------------------------------------- /test/test_Cl5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Cl5.cpp -------------------------------------------------------------------------------- /test/test_Cl6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Cl6.cpp -------------------------------------------------------------------------------- /test/test_Li.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Li.cpp -------------------------------------------------------------------------------- /test/test_Li2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Li2.cpp -------------------------------------------------------------------------------- /test/test_Li3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Li3.cpp -------------------------------------------------------------------------------- /test/test_Li4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Li4.cpp -------------------------------------------------------------------------------- /test/test_Li5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Li5.cpp -------------------------------------------------------------------------------- /test/test_Li6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Li6.cpp -------------------------------------------------------------------------------- /test/test_Sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_Sl.cpp -------------------------------------------------------------------------------- /test/test_eta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_eta.cpp -------------------------------------------------------------------------------- /test/test_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_example.cpp -------------------------------------------------------------------------------- /test/test_factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_factorial.cpp -------------------------------------------------------------------------------- /test/test_harmonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_harmonic.cpp -------------------------------------------------------------------------------- /test/test_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_log.cpp -------------------------------------------------------------------------------- /test/test_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_version.cpp -------------------------------------------------------------------------------- /test/test_zeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Expander/polylogarithm/HEAD/test/test_zeta.cpp --------------------------------------------------------------------------------