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

Private GIT Repository
8711fca03a2d358d91af8e58f62f73b08e15f040
[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 compute();
21     void print_loads(e_xbt_log_priority_t logp = xbt_log_priority_info);
22 };
23
24 #endif // !PROCESS_H
25
26 // Local variables:
27 // mode: c++
28 // End: