| 79 | } |
| 80 | |
| 81 | bool CellDescription::isConnectedTo(uint64_t id) const |
| 82 | { |
| 83 | return std::find_if(connections.begin(), connections.end(), [&id](auto const& connection) { return connection.cellId == id; }) != connections.end(); |
| 84 | } |
| 85 | |
| 86 | RealVector2D ClusterDescription::getClusterPosFromCells() const |
| 87 | { |
no test coverage detected