//! Prediction Suffix Tree (PST) for Complex Event Forecasting
//!
//! Based on "Complex Event Forecasting with Prediction Suffix Trees"
//! (Alevizos, Artikis, Paliouras — arXiv:2109.00287)
//!
//! Provides variable-order Markov models that predict whether a partially-matched
//! SASE+ pattern will complete, and when. Combined with the NFA to form a
//! Pattern Markov Chain (PMC).
pub use ConformalCalibrator;
pub use HawkesIntensity;
pub use ;
pub use OnlinePSTLearner;
pub use PruningStrategy;
pub use ;