| 261 | } |
| 262 | |
| 263 | std::unordered_set<uint64_t> DataDescription::getCellIds() const |
| 264 | { |
| 265 | std::unordered_set<uint64_t> result; |
| 266 | for (auto const& cell : cells) { |
| 267 | result.insert(cell.id); |
| 268 | } |
| 269 | return result; |
| 270 | } |
| 271 | |
| 272 | DataDescription& |
| 273 | DataDescription::addConnection(uint64_t const& cellId1, uint64_t const& cellId2, std::unordered_map<uint64_t, int>* cache) |
no outgoing calls
no test coverage detected