Skip to main content

hirn_engine/graph/
mod.rs

1//! Graph sub-module — CachedGraphStore, persistent graph/activation/Hebbian,
2//! causal reasoning, and graph store trait.
3//!
4//! Re-exports core graph types from `hirn_graph::graph` for backward compatibility.
5
6pub mod cached_graph_store;
7pub mod causal;
8pub mod graph_store;
9pub mod persistent_activation;
10pub mod persistent_graph;
11pub mod persistent_hebbian;
12
13// Re-export hirn_graph core types so `crate::graph::EdgeId` etc. still resolve.
14pub use hirn_graph::graph::*;