Compiling the Source Code
Linux
A make file is included with the C++ source code. To compile the program, you can run themake command in the top-level EPMR directory (epmr-XX.XX) or in the src directory. The code should compile cleanly with gcc (g++) and other modern C++ compilers. If you have administrator privileges, running the command sudo make install from the top-level directory will copy the executable to /usr/local/bin.To take advantage of multicore processors, the Makefile is set up to compile with OpenMP support (-fopenmp for g++). The program can also be compiled for multithreaded execution using the -pthread flag instead of -fopenmp. (This may be incompatible with the -static flag).