• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vigna / webgraph-rs / 23365769388

20 Mar 2026 10:52PM UTC coverage: 68.228% (-3.0%) from 71.245%
23365769388

push

github

vigna
No le_bins,be_bins for webgraph

6655 of 9754 relevant lines covered (68.23%)

46582760.24 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/cli/src/bench/mod.rs
1
/*
2
 * SPDX-FileCopyrightText: 2023 Tommaso Fontana
3
 * SPDX-FileCopyrightText: 2026 Sebastiano Vigna
4
 *
5
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
6
 */
7

8
use anyhow::Result;
9
use clap::Subcommand;
10

11
pub mod bf_visit;
12
pub mod bvgraph;
13

14
#[derive(Subcommand, Debug)]
15
#[command(name = "bench")]
16
/// Benchmarking utilities.​
17
pub enum SubCommands {
18
    Bvgraph(bvgraph::CliArgs),
19
    BFVisit(bf_visit::CliArgs),
20
}
21

22
pub fn main(subcommand: SubCommands) -> Result<()> {
×
23
    match subcommand {
×
24
        SubCommands::Bvgraph(args) => bvgraph::main(args),
×
25
        SubCommands::BFVisit(args) => bf_visit::main(args),
×
26
    }
27
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc