This repository holds almost all of my seedfinding-related files and code.
Most of the C/C++ files in this repository can be compiled by
- Installing CMake and a Makefile generator of your choosing (such as GNU Make for Linux or MinGW for Windows).
- Opening a terminal of your choice, and running
cmake -G "[Makefile generator to use]" -Dprog="[path/to/program/to/run]" -Dbackend="[Backend to use: Basic, Pthreads, or MPI]" .
- After CMake finishes, running your makefile generator (e.g.
make
if using GNU Make ormingw32-make.exe
if using MinGW). - Opening the
\bin
folder that will be created, and running theseedfinding
/seedfinding.exe
executable inside.
(A build script is planned to ultimately automate this process.)