Cleanup #48: Move SdagConstruct::numberNodes into each subclass
[charm.git] / src / ck-ldb / BlockLB.h
blob6a3e970eadde6a739aaefcc71292cb610e614fdb
1 #ifndef _BLOCKLB_H_
2 #define _BLOCKLB_H_
4 #include "CentralLB.h"
6 void CreateBlockLB ();
8 class BlockLB : public CBase_BlockLB
10 public:
11 BlockLB (const CkLBOptions &opt);
12 BlockLB (CkMigrateMessage *m) : CBase_BlockLB (m) { };
14 void work (LDStats *stats);
15 void pup (PUP::er &p) { }
17 private:
18 bool QueryBalanceNow (int step);
21 #endif /* _BLOCKLB_H_ */