fix typo on bad member access
This commit is contained in:
parent
daaee30be8
commit
a1862661e8
1 changed files with 2 additions and 2 deletions
|
@ -200,8 +200,8 @@ void Graph::reset_forest()
|
|||
{
|
||||
NodeId cur_id = 0;
|
||||
for(auto & node : _nodes) {
|
||||
node._ear_or_root_neighbor = cur_id;
|
||||
node._root_of_ear_component = cur_id;
|
||||
node.ear_or_root_neighbor = cur_id;
|
||||
node.root_of_ear_component = cur_id;
|
||||
// Note that we do not change the matching itself here
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue