1 #ifndef _NBODY_OPENMP_H
2 #define _NBODY_OPENMP_H
6 * @purpose OpenMP version of N-Body simulator, declarations
7 * @author Sam Moore (20503628) - 2012
10 #include "../single-thread/nbody.h" //Include original code
14 #undef SINGLE_THREADED
17 // Replace default macros with thread-safe functions
19 void Simulation_Run(int argc, char ** argv);
21 //void QuitProgram(bool error);
28 void Compute(); //Compute a single step
30 #endif //_NBODY_OPENMP_H