pathrex 0.1.0

Library and CLI for benchmarking RPQ/CFL queries on edge-labeled graphs via SuiteSparse:GraphBLAS and LAGraph.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CLI layer for the `pathrex` binary.
//!
//! This module is only compiled when the `bench` feature is enabled.
//! It provides the argument definitions, graph/query loading, and the two
//! subcommand runners:
//!
//! - `bench` — criterion-based benchmarking with checkpointing
//! - `query` — single-shot query execution with result counts

pub mod args;
pub mod bench;
pub mod checkpoint;
pub mod dispatch;
pub mod loader;
pub mod output;
pub mod query;