separate src folder

This commit is contained in:
Maximilian Keßler 2023-11-05 12:52:03 +01:00
parent d8f8577fa5
commit 3482e3b2d5
Signed by: max
GPG Key ID: BCC5A619923C0BA5
5 changed files with 2 additions and 0 deletions

View File

@ -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;
}

View File

@ -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,