pmat 3.15.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
// Graph analysis module for PMAT
// Following extreme TDD with zero SATD tolerance

pub mod aprender_adapter;
pub mod builder;
pub mod centrality;
pub mod community;
pub mod context_annotator;
pub mod pagerank;
#[cfg(feature = "analytics-simd")]
pub mod storage; // Phase 7.1: Hybrid graph storage with trueno-db + aprender
pub mod structure;
pub mod symbol_table;
pub mod types;

// #[cfg(feature = "simd")]
// pub mod simd_pagerank;

pub mod parallel_louvain;

pub use builder::*;
pub use centrality::*;
pub use community::*;
pub use context_annotator::*;
pub use pagerank::*;
pub use structure::*;
pub use types::*;

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod tests;