]> AND Private Git Repository - loba.git/blob - process.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Wip++...
[loba.git] / process.h
1 #ifndef PROCESS_H
2 #define PROCESS_H
3
4 #include <vector>
5 #include <xbt/log.h>
6 #include "communicator.h"
7 #include "neighbor.h"
8
9 class process {
10 public:
11     process(int argc, char *argv[]);
12     ~process() { };
13     int run();
14
15 private:
16     communicator comm;
17     std::vector<neighbor> neigh;
18     double load;
19
20     void receive();
21     void compute();
22     void print_loads(e_xbt_log_priority_t logp = xbt_log_priority_info);
23 };
24
25 #endif // !PROCESS_H
26
27 // Local variables:
28 // mode: c++
29 // End: