From 4ae57824d7a91add1ea8fafcf1bdee706ee8191d Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 8 Aug 2024 22:14:43 +0200 Subject: [PATCH] Roll back overzealous BVGraph -> BvGraph replacement --- src/graphs/bvgraph/comp/flags.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphs/bvgraph/comp/flags.rs b/src/graphs/bvgraph/comp/flags.rs index 69336b36..6b783ad6 100644 --- a/src/graphs/bvgraph/comp/flags.rs +++ b/src/graphs/bvgraph/comp/flags.rs @@ -88,8 +88,8 @@ impl CompFlags { pub fn to_properties(&self, num_nodes: usize, num_arcs: u64) -> Result { let mut s = String::new(); - s.push_str("#BvGraph properties\n"); - s.push_str("graphclass=it.unimi.dsi.webgraph.BvGraph\n"); + s.push_str("#BVGraph properties\n"); + s.push_str("graphclass=it.unimi.dsi.webgraph.BVGraph\n"); if core::any::TypeId::of::() == core::any::TypeId::of::() { s.push_str("version=0\n");