Skip to content
Snippets Groups Projects
Commit aa91470e authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Fix bug in Graph::chooseEdge

parent 36536159
Branches
Tags
No related merge requests found
......@@ -86,7 +86,7 @@ namespace hpp {
{
Edges_t edges;
for (Nodes_t::const_iterator it = nodes.begin();
it == nodes.end(); it++)
it != nodes.end(); it++)
edges.push_back( (*it)->nodeSelector().lock()->chooseEdge(*it) );
return edges;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment