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
11
12
class
TaskManager
{
13
14
private
:
15
16
// Communicator
17
MPI_Comm comm;
18
19
// number of tasks
20
int
numTasks;
21
22
public
:
23
29
TaskManager
(MPI_Comm comm,
int
numTasks);
30
35
std::map<int, int>
run
()
const
;
36
37
};
38
39
#endif
// TASK_MANAGER
TaskManager::run
std::map< int, int > run() const
Definition
TaskManager.cpp:10
TaskManager::TaskManager
TaskManager(MPI_Comm comm, int numTasks)
Definition
TaskManager.cpp:3
Generated by
1.14.0