jakobbossek / mcCPPGraph

Multi-Criteria Optimization Graph Algorithms in C++
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

BFS search #1

Closed jakobbossek closed 6 years ago

jakobbossek commented 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.

jakobbossek commented 6 years ago

Implemented in getConnectedSubgraph.