Type additions and renames #3

Merged
warrence merged 7 commits from dev into main 2026-07-06 19:13:13 +02:00
6 changed files with 15 additions and 12 deletions
Showing only changes of commit 2d400628f7 - Show all commits
+3
View File
@@ -1,2 +1,5 @@
pub mod append_graph; pub mod append_graph;
pub mod graph; pub mod graph;
pub use append_graph::AppendGraph;
pub use graph::Graph;
+2 -2
View File
@@ -1,12 +1,12 @@
mod append_graph_tests { mod append_graph_tests {
use grapherity::models::append_graph::AppendGraph; use grapherity::models::AppendGraph;
grapherity::graph_topology_test_fixtures!(AppendGraph); grapherity::graph_topology_test_fixtures!(AppendGraph);
grapherity::bfs_tests!(AppendGraph); grapherity::bfs_tests!(AppendGraph);
} }
mod graph_tests { mod graph_tests {
use grapherity::models::graph::Graph; use grapherity::models::Graph;
grapherity::graph_topology_test_fixtures!(Graph); grapherity::graph_topology_test_fixtures!(Graph);
grapherity::bfs_tests!(Graph); grapherity::bfs_tests!(Graph);
+2 -2
View File
@@ -1,12 +1,12 @@
mod append_graph_tests { mod append_graph_tests {
use grapherity::models::append_graph::AppendGraph; use grapherity::models::AppendGraph;
grapherity::graph_topology_test_fixtures!(AppendGraph); grapherity::graph_topology_test_fixtures!(AppendGraph);
grapherity::dfs_tests!(AppendGraph); grapherity::dfs_tests!(AppendGraph);
} }
mod graph_tests { mod graph_tests {
use grapherity::models::graph::Graph; use grapherity::models::Graph;
grapherity::graph_topology_test_fixtures!(Graph); grapherity::graph_topology_test_fixtures!(Graph);
grapherity::dfs_tests!(Graph); grapherity::dfs_tests!(Graph);
+2 -2
View File
@@ -1,12 +1,12 @@
mod append_graph_tests { mod append_graph_tests {
use grapherity::models::append_graph::AppendGraph; use grapherity::models::AppendGraph;
grapherity::graph_topology_test_fixtures!(AppendGraph); grapherity::graph_topology_test_fixtures!(AppendGraph);
grapherity::dijkstra_tests!(AppendGraph); grapherity::dijkstra_tests!(AppendGraph);
} }
mod graph_tests { mod graph_tests {
use grapherity::models::graph::Graph; use grapherity::models::Graph;
grapherity::graph_topology_test_fixtures!(Graph); grapherity::graph_topology_test_fixtures!(Graph);
grapherity::dijkstra_tests!(Graph); grapherity::dijkstra_tests!(Graph);
+2 -2
View File
@@ -1,12 +1,12 @@
mod append_graph_tests { mod append_graph_tests {
use grapherity::models::append_graph::AppendGraph; use grapherity::models::AppendGraph;
grapherity::graph_topology_test_fixtures!(AppendGraph); grapherity::graph_topology_test_fixtures!(AppendGraph);
grapherity::find_path_tests!(AppendGraph); grapherity::find_path_tests!(AppendGraph);
} }
mod graph_tests { mod graph_tests {
use grapherity::models::graph::Graph; use grapherity::models::Graph;
grapherity::graph_topology_test_fixtures!(Graph); grapherity::graph_topology_test_fixtures!(Graph);
grapherity::find_path_tests!(Graph); grapherity::find_path_tests!(Graph);
+4 -4
View File
@@ -1,24 +1,24 @@
mod append_graph_vertex_map_tests { mod append_graph_vertex_map_tests {
use grapherity::models::append_graph::AppendGraph; use grapherity::models::AppendGraph;
grapherity::vertex_map_tests!(AppendGraph); grapherity::vertex_map_tests!(AppendGraph);
} }
mod append_graph_edge_map_tests { mod append_graph_edge_map_tests {
use grapherity::models::append_graph::AppendGraph; use grapherity::models::AppendGraph;
grapherity::edge_map_tests!(AppendGraph); grapherity::edge_map_tests!(AppendGraph);
} }
mod graph_vertex_map_tests { mod graph_vertex_map_tests {
use grapherity::models::graph::Graph; use grapherity::models::Graph;
grapherity::vertex_map_tests!(Graph); grapherity::vertex_map_tests!(Graph);
grapherity::vertex_map_deletion_tests!(Graph); grapherity::vertex_map_deletion_tests!(Graph);
} }
mod graph_edge_map_tests { mod graph_edge_map_tests {
use grapherity::models::graph::Graph; use grapherity::models::Graph;
grapherity::edge_map_tests!(Graph); grapherity::edge_map_tests!(Graph);
grapherity::edge_map_deletion_tests!(Graph); grapherity::edge_map_deletion_tests!(Graph);