From 0e3418b8bf0f216fb9ac54f5b514884099917278 Mon Sep 17 00:00:00 2001 From: Andi Date: Sat, 4 May 2024 19:28:52 +0200 Subject: [PATCH] fix format again --- src/fast_graph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fast_graph.rs b/src/fast_graph.rs index 9fac159..e651aac 100644 --- a/src/fast_graph.rs +++ b/src/fast_graph.rs @@ -28,7 +28,7 @@ pub struct FastGraph { num_nodes: usize, pub(crate) ranks: Vec, pub(crate) edges_fwd: Vec, - pub(crate) first_edge_ids_fwd: Vec< EdgeId >, + pub(crate) first_edge_ids_fwd: Vec, pub(crate) edges_bwd: Vec, pub(crate) first_edge_ids_bwd: Vec,