NAMD
AlgNbor.h
Go to the documentation of this file.
1 
7 #ifndef ALGNBOR_H
8 #define ALGNBOR_H
9 
10 //#include "elements.h"
11 #include "Rebalancer.h"
12 
13 class AlgNbor : public Rebalancer
14 {
15 private:
16 int mype;
17 int nNbors;
18 void strategy();
19 
20 
21 public:
22 AlgNbor(int pe, computeInfo *computeArray, patchInfo *patchArray,
23  processorInfo *processorArray, int nComps,
24  int nPatches, int nPes, int nNbs);
25 };
26 
27 #endif
28 
29 
30 
31 
AlgNbor(int pe, computeInfo *computeArray, patchInfo *patchArray, processorInfo *processorArray, int nComps, int nPatches, int nPes, int nNbs)
Definition: AlgNbor.C:14