Skip to content

Nel-S/seedfinding

Repository files navigation

Seedfinding

This repository holds almost all of my seedfinding-related files and code.

C/C++ Compiling

Most of the C/C++ files in this repository can be compiled by

  1. Installing CMake and a Makefile generator of your choosing (such as GNU Make for Linux or MinGW for Windows).
  2. 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]" .
  1. After CMake finishes, running your makefile generator (e.g. make if using GNU Make or mingw32-make.exe if using MinGW).
  2. Opening the \bin folder that will be created, and running the seedfinding/seedfinding.exe executable inside.

(A build script is planned to ultimately automate this process.)