BioCMAMC-ST
sync.hpp
1#ifndef __SYNC_NODES_HPP__
2#define __SYNC_NODES_HPP__
3
4#include <common/execinfo.hpp>
5
6
7namespace Simulation
8{
9 class SimulationUnit;
10}
11
24void sync_step(const ExecInfo &exec, Simulation::SimulationUnit &simulation);
25
38void sync_prepare_next(Simulation::SimulationUnit &simulation);
39
51void last_sync(const ExecInfo &exec, Simulation::SimulationUnit &simulation);
52
53#endif //__SYNC_NODES_HPP__
Definition simulation.hpp:65
Namespace that contains classes and structures related to simulation handling.
Definition host_specific.hpp:12
Definition execinfo.hpp:12