Annotate struct definitions with a recursive flag.

This commit is contained in:
Daniel Kirchner
2020-04-16 16:42:12 +02:00
parent 95349b3634
commit df1809f8da
13 changed files with 210 additions and 133 deletions
+4
View File
@@ -114,6 +114,10 @@ struct BreadthFirstSearch
}
return *this;
}
void abort()
{
verticesToTraverse.clear();
}
std::set<V> verticesToTraverse;
std::set<V> visited{};