gitextract_tz2mhnh1/ ├── .codecov.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── generic-issue-template.md │ ├── dependabot.yml │ └── workflows/ │ ├── CI.yml │ ├── CompatHelper.yml │ ├── TagBot.yml │ └── documentation.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Project.toml ├── README.md ├── appveyor.yml ├── docs/ │ ├── Project.toml │ ├── make.jl │ └── src/ │ ├── index.md │ ├── interface.md │ └── worked_example.md ├── src/ │ ├── DynamicHMC.jl │ ├── NUTS.jl │ ├── diagnostics.jl │ ├── hamiltonian.jl │ ├── mcmc.jl │ ├── reporting.jl │ ├── stepsize.jl │ ├── trees.jl │ └── utilities.jl └── test/ ├── Project.toml ├── runtests.jl ├── sample-correctness_tests.jl ├── sample-correctness_utilities.jl ├── test_NUTS.jl ├── test_diagnostics.jl ├── test_hamiltonian.jl ├── test_logging.jl ├── test_mcmc.jl ├── test_stepsize.jl ├── test_trees.jl └── utilities.jl