├── .github └── workflows │ └── install_and_test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── special_functions.nimble ├── src ├── special_functions.nim └── special_functions │ ├── beta.nim │ ├── erf.nim │ ├── gamma.nim │ └── mathutils.nim └── tests ├── config.nims ├── test_beta.nim ├── test_erf.nim └── test_gamma.nim /.github/workflows/install_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/.github/workflows/install_and_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/README.md -------------------------------------------------------------------------------- /special_functions.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/special_functions.nimble -------------------------------------------------------------------------------- /src/special_functions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/src/special_functions.nim -------------------------------------------------------------------------------- /src/special_functions/beta.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/src/special_functions/beta.nim -------------------------------------------------------------------------------- /src/special_functions/erf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/src/special_functions/erf.nim -------------------------------------------------------------------------------- /src/special_functions/gamma.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/src/special_functions/gamma.nim -------------------------------------------------------------------------------- /src/special_functions/mathutils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/src/special_functions/mathutils.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/test_beta.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/tests/test_beta.nim -------------------------------------------------------------------------------- /tests/test_erf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/tests/test_erf.nim -------------------------------------------------------------------------------- /tests/test_gamma.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayman-albaz/special-functions/HEAD/tests/test_gamma.nim --------------------------------------------------------------------------------