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

Private GIT Repository
Use a shorter name for function in deployment_generator.
[loba.git] / process.h
index 268fac9a2902641225f3145bf9cd3f30283f1aaa..053e3482c67fbbd424632ebaf770b6c4a2378fbb 100644 (file)
--- a/process.h
+++ b/process.h
 
 class process {
 public:
+    static double get_total_load_init() { return total_load_init; }
+    static double get_total_load_exit() { return total_load_exit; }
+
     process(int argc, char* argv[]);
-    ~process();
+    virtual ~process();
+
     int run();
 
 protected:
@@ -33,8 +37,10 @@ protected:
     double sum_of_to_send() const;
 
 private:
-    typedef MAP_TEMPLATE<m_host_t, neighbor*> rev_neigh_type;
+    static double total_load_init;
+    static double total_load_exit;
 
+    typedef MAP_TEMPLATE<m_host_t, neighbor*> rev_neigh_type;
     neigh_type neigh;           // list of neighbors (do not alter
                                 // after construction!)
     rev_neigh_type rev_neigh;   // map m_host_t -> neighbor