We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 08c9127 + 3e4147b commit d497765Copy full SHA for d497765
1 file changed
webgraph/src/graphs/bvgraph/comp/impls.rs
@@ -650,6 +650,7 @@ impl BvCompConfig {
650
graph_path.display()
651
)
652
})?;
653
+ std::fs::remove_file(chunk_graph_path)?;
654
655
log::debug!(
656
"Copying offsets {} [{}..{}) bits from {} to {}",
@@ -675,6 +676,7 @@ impl BvCompConfig {
675
676
offsets_path.display()
677
678
679
+ std::fs::remove_file(chunk_offsets_path)?;
680
681
copy_pl.update_with_count(last_node - first_node + 1);
682
}
0 commit comments