forked from ChristophKirst/SimKernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsim_main.h
More file actions
25 lines (19 loc) · 743 Bytes
/
sim_main.h
File metadata and controls
25 lines (19 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/***********************************************************************
sim_main.cpp - Include file for main.cpp with user kernel:
#include "Kernel.h"
#include "sim_main.h"
int main(int argc, char* argv[])
{
SimControl<Kernel> simc;
return simc.simulate(argc, argv);
};
Christoph Kirst
christoph@nld.ds.mpg.de
Max Planck Institue for Dynamics and Self-Organisation
HU Berlin, BCCN Göttingen & Berlin (2008)
************************************************************************/
#ifndef SIM_MPI
#include "sim_control.h"
#else
#include "sim_control_mpi.h"
#endif