rssn-advanced 0.1.0

This is rssn-advanced: The next generation symbolic core of rssn.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Streaming storage and dynamic caching.
//!
//! Provides memory management for large-scale symbolic computation:
//!
//! - `cache` — Disk-backed spillover for large-scale arenas.
//! - `hotspot` — Runtime frequency tracking for intermediate results.
//! - `eviction` — LRU/frequency-based eviction policy for auto-cleanup.

pub mod cache;
pub mod eviction;
pub mod hotspot;

pub use cache::DiskCache;
pub use eviction::{EvictionPolicy, FrequencyPolicy, evict_cold_nodes, evict_nodes_with_policy};
pub use hotspot::DynamicHotspotTable;