• 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

60.0
/cli/src/run/mod.rs
1
/*
2
 * SPDX-FileCopyrightText: 2024 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 llp;
12
pub mod llp_combine;
13
pub mod pad;
14

15
/// Runs algorithms on graphs.​
16
#[derive(Subcommand, Debug)]
17
#[command(name = "run")]
18
pub enum SubCommands {
19
    Llp(llp::CliArgs),
20
    LlpCombine(llp_combine::CliArgs),
21
    Pad(pad::CliArgs),
22
}
23

24
pub fn main(subcommand: SubCommands) -> Result<()> {
5✔
25
    match subcommand {
5✔
26
        SubCommands::Llp(args) => llp::main(args),
15✔
27
        SubCommands::LlpCombine(args) => llp_combine::main(args),
×
28
        SubCommands::Pad(args) => pad::main(args),
×
29
    }
30
}
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