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

Private GIT Repository
Fix include for <simgrid/config.h>.
[loba.git] / loba_fairstrategy.h
1 #ifndef LOBA_FAIRSTRATEGY_H
2 #define LOBA_FAIRSTRATEGY_H
3
4 #include "process.h"
5
6 class loba_fairstrategy: public process {
7 public:
8     loba_fairstrategy(int argc, char* argv[]): process(argc, argv) { }
9     ~loba_fairstrategy()                                           { }
10
11 private:
12     void load_balance();
13 };
14
15 #endif //!LOBA_FAIR_STRATEGY_H
16
17 // Local variables:
18 // mode: c++
19 // End: