Add find_path algorithm and tests

This commit is contained in:
2026-06-29 21:03:10 +02:00
parent f009a86f1e
commit 21c95b4796
4 changed files with 192 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::find_path_tests!(AppendGraph);
}
mod graph_tests {
use grapherity::models::graph::Graph;
grapherity::graph_topology_test_fixtures!(Graph);
grapherity::find_path_tests!(Graph);
}