A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
loba.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use the correct algorithm to find the bound.
[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: