//! Reservoir computing primitives for streaming temporal models.
//!
//! This module provides the core building blocks for reservoir computing
//! architectures (Echo State Networks, Next Generation Reservoir Computing)
//! that run in `no_std` environments with only `alloc`.
//!
//! # Components
//!
//! - [`Xorshift64Rng`] -- deterministic PRNG for reproducible reservoir initialization
//! - [`DelayBuffer`] -- circular buffer for time-delay embeddings
//! - [`HighDegreePolynomial`] -- polynomial monomial generator for nonlinear features
//! - [`CycleReservoir`] -- cycle/ring topology reservoir with leaky integration
pub use CycleReservoir;
pub use DelayBuffer;
pub use HighDegreePolynomial;
pub use Xorshift64Rng;