worked on signal-strength-estimation

add this information to grid nodes
evaluate this information
new test-cases
This commit is contained in:
2016-07-15 15:29:07 +02:00
parent 34e52cd7f0
commit 99ee95ce7b
21 changed files with 568 additions and 26 deletions

View File

@@ -24,14 +24,18 @@ private:
/** INTERNAL: node's index array-index */
int _idx;
/** semantic annotation for this node */
uint8_t _type;
/** INTERNAL: store neighbors (via index) */
int _neighbors[10];
/** INTERNAL: number of neighbors */
uint8_t _numNeighbors;
/** INTERNAL: store neighbors (via index) */
int _neighbors[10];
/** semantic annotation for this node */
uint8_t _type;
public:
@@ -43,7 +47,9 @@ public:
public:
GridNode() : _idx(-1), _numNeighbors(0), _neighbors() {;}
/** ctor */
GridNode() : _idx(-1), _neighbors(), _numNeighbors(0), _type(0) {;}
/** get the node's index within its grid */
int getIdx() const {return _idx;}