Compiling the Source Code


Linux

A rudimentary make file is included with the C++ source code. The code should compile cleanly with gcc (g++) and other modern C++ compilers.
To take advantage of multicore processors, it is necessary to compile the program with OpenMP support (-fopenmp for g++ or -openmp for icpc).

Mac OS X

A rudimentary make file is included with the C++ source code. The code should compile cleanly with gcc (g++) and other modern C++ compilers. To install g++, download and install the Apple developer tools.

Windows

The program can be compiled with Visual Studio, Visual C++ Express or the mingw g++ compiler. No Visual Studio project file is currently included with the source code, but one will be provided in the future.