Skip to content

Commit

Permalink
Roll back overzealous BVGraph -> BvGraph replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
progval authored and zacchiro committed Aug 9, 2024
1 parent 87c46fc commit 4ae5782
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graphs/bvgraph/comp/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ impl CompFlags {

pub fn to_properties<E: Endianness>(&self, num_nodes: usize, num_arcs: u64) -> Result<String> {
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::<E>() == core::any::TypeId::of::<BigEndian>() {
s.push_str("version=0\n");
Expand Down

0 comments on commit 4ae5782

Please sign in to comment.