X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f29b38ef2a056daa14bbfda2fce78063faa773d4..147d0e88c4da14c801d15e0875bedb474180bea2:/process.h?ds=sidebyside diff --git a/process.h b/process.h index ea35003..aa1e032 100644 --- a/process.h +++ b/process.h @@ -10,13 +10,16 @@ class process { public: process(int argc, char *argv[]); ~process() { }; - void print_loads(e_xbt_log_priority_t logp = xbt_log_priority_info); int run(); private: communicator comm; std::vector neigh; double load; + + void receive(); + void compute(); + void print_loads(e_xbt_log_priority_t logp = xbt_log_priority_info); }; #endif // !PROCESS_H