separate src folder
This commit is contained in:
parent
d8f8577fa5
commit
3482e3b2d5
5 changed files with 2 additions and 0 deletions
|
@ -200,6 +200,7 @@ void Graph::reset_forest()
|
|||
for(auto & node : _nodes) {
|
||||
node.ear_or_root_neighbor = cur_id;
|
||||
node.root_of_ear_component = cur_id;
|
||||
node.scanned = false;
|
||||
// Note that we do not change the matching itself here
|
||||
++cur_id;
|
||||
}
|
|
@ -95,6 +95,7 @@ public:
|
|||
NodeId matched_neighbor {invalid_node_id};
|
||||
NodeId ear_or_root_neighbor {invalid_node_id};
|
||||
NodeId root_of_ear_component {invalid_node_id};
|
||||
bool scanned;
|
||||
|
||||
private:
|
||||
// This allows each Graph to access private members of this class,
|
Loading…
Reference in a new issue