Closed jakobbossek closed 6 years ago
with an additional argument to limit the number of visited nodes, i.e., std::vector<int> doBFS(int max = this->getV()); We need this for subgraph selection in our subgraph mutation operator for the mcMST.
std::vector<int> doBFS(int max = this->getV());
Implemented in getConnectedSubgraph.
getConnectedSubgraph
with an additional argument to limit the number of visited nodes, i.e.,
std::vector<int> doBFS(int max = this->getV());
We need this for subgraph selection in our subgraph mutation operator for the mcMST.