//! MenteDB Graph: knowledge graph engine with CSR/CSC storage.
//!
//! This crate provides:
//! - Compressed Sparse Row (CSR) and Compressed Sparse Column (CSC) graph storage
//! - Typed, weighted edge traversal
//! - Belief propagation and cascade updates
//! - Subgraph extraction for context assembly
/// Belief propagation across the knowledge graph.
/// Contradiction and supersession detection.
/// Compressed Sparse Row/Column graph storage.
/// High level graph manager with persistence.
/// BFS, DFS, shortest path, and subgraph extraction.
pub use ;
pub use ;
pub use ;
pub use GraphManager;
pub use ;