seapodym-parallel
Fish dynamics models with parameter estimations
Loading...
Searching...
No Matches
src
TaskManager.h
1
#include <mpi.h>
2
#include <map>
3
4
#ifndef TASK_MANAGER
5
#define TASK_MANAGER
6
13
14
class
TaskManager
{
15
16
private
:
17
18
// Communicator
19
MPI_Comm comm;
20
21
// number of tasks
22
int
numTasks;
23
24
public
:
25
31
TaskManager
(MPI_Comm comm,
int
numTasks);
32
37
std::map<int, int>
run
()
const
;
38
39
};
40
41
#endif
// TASK_MANAGER
TaskManager::run
std::map< int, int > run() const
Definition
TaskManager.cpp:11
TaskManager::TaskManager
TaskManager(MPI_Comm comm, int numTasks)
Definition
TaskManager.cpp:4
Generated by
1.14.0