Add depth-first search algorithms and tests

This commit is contained in:
2026-06-26 15:34:42 +02:00
parent 91ac925417
commit 135f256141
4 changed files with 289 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
mod append_graph_tests {
use grapherity::models::append_graph::AppendGraph;
grapherity::graph_topology_test_fixtures!(AppendGraph);
grapherity::dfs_tests!(AppendGraph);
}
mod graph_tests {
use grapherity::models::graph::Graph;
grapherity::graph_topology_test_fixtures!(Graph);
grapherity::dfs_tests!(Graph);
}