├── .all-contributorsrc ├── .clang-format ├── .github └── workflows │ ├── DocGenerator.yml │ └── codeql-analysis.yml ├── .gitignore ├── .valgrindrc ├── CITATION.cff ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── doc ├── Algorithm-explanation.md ├── Contributing.md └── Extra-scripts.md ├── img ├── SAFD.gif └── logo.svg ├── include ├── functions.hpp └── utils.hpp ├── scripts ├── debug.sh ├── install_dependencies.sh └── update.sh ├── src ├── functions.cpp ├── main.cpp └── utils.cpp └── test ├── test_functions.cpp └── test_utils.cpp /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/DocGenerator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/.github/workflows/DocGenerator.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | bin 3 | obj 4 | pdf 5 | *out* -------------------------------------------------------------------------------- /.valgrindrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/.valgrindrc -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/README.md -------------------------------------------------------------------------------- /doc/Algorithm-explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/doc/Algorithm-explanation.md -------------------------------------------------------------------------------- /doc/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/doc/Contributing.md -------------------------------------------------------------------------------- /doc/Extra-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/doc/Extra-scripts.md -------------------------------------------------------------------------------- /img/SAFD.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/img/SAFD.gif -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/img/logo.svg -------------------------------------------------------------------------------- /include/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/include/functions.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /scripts/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/scripts/debug.sh -------------------------------------------------------------------------------- /scripts/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/scripts/install_dependencies.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /src/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/src/functions.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /test/test_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/test/test_functions.cpp -------------------------------------------------------------------------------- /test/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustWhit3/SAFD-algorithm/HEAD/test/test_utils.cpp --------------------------------------------------------------------------------