Add breadth-first search algorithms and tests

This commit is contained in:
2026-06-25 21:54:49 +02:00
parent e299012948
commit 91ac925417
4 changed files with 343 additions and 1 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::bfs_tests!(AppendGraph);
}
mod graph_tests {
use grapherity::models::graph::Graph;
grapherity::graph_topology_test_fixtures!(Graph);
grapherity::bfs_tests!(Graph);
}