Updated todos

This commit is contained in:
2026-09-03 20:40:43 +02:00
parent 3ad448974e
commit 8c3c6abc78
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -557,7 +557,6 @@ where
None
}
// TODO: 'visited' is already encoded in 'predecessors', except for 'source', which is visited, but has no predecessor.
/// Return data type for [`dfs`].
pub struct DfsResult<V: Copy> {
/// Vertex map indicating which vertices were visited during the search.
+1
View File
@@ -96,6 +96,7 @@ pub struct FrozenGraph {
}
impl FrozenGraph {
// TODO: Move this to a new FromGraph trait and adapt the MakeTestGraph impl to use helper functions like "fn fixture_empty<G: FromGraph>() -> G { G::from_graph(&AppendGraph::empty()).0 }".
/// Creates a graph instance as a copy of another graph.
///
/// Returns the copied graph instance and two mappings of the `source` graph vertices and edges