evolving_sheaf/lib.rs
1//! # evolving-sheaf (Rust port)
2//!
3//! Spectral Gap Dynamics in Evolving Cellular Sheaves.
4//!
5//! Studies how the Hodge Laplacian's spectral gap (λ₁) changes when restriction maps
6//! become flow-dependent. Static sheaves preserve the gap; dynamic ones reveal phase
7//! transitions.
8//!
9//! ## Model
10//!
11//! The sheaf Hodge Laplacian is L = D†D where D is the coboundary operator whose entries
12//! depend on restriction maps. Restriction maps may be static (theorem holds) or dynamic
13//! (gap decreases — research!).
14
15pub mod graph;
16pub mod sheaf;
17pub mod flow;
18pub mod spectrum;
19pub mod trajectory;
20pub mod stability;
21
22pub use graph::*;
23pub use sheaf::*;
24pub use flow::*;
25pub use spectrum::*;
26pub use trajectory::*;
27pub use stability::*;
28
29/// Version of the evolving-sheaf library.
30pub const VERSION: &str = "0.1.0";