get the pointer to the point index set
| 44 | |
| 45 | // get the pointer to the point index set |
| 46 | std::unordered_set<int64_t> * get_pidx(int64_t gidx) { |
| 47 | auto iter = table.find(gidx); |
| 48 | if (iter == table.end()) { |
| 49 | return nullptr; |
| 50 | } |
| 51 | else { |
| 52 | return &(table[gidx]); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | // get the underlying table |
| 57 | Table get_table() { |
no outgoing calls
no test coverage detected