ipfrs_tensorlogic/temporal_pattern_matcher/mod.rs
1//! Temporal Pattern Matcher — NFA-based temporal sequence pattern matching.
2//!
3//! Provides production-quality matching of event streams against multi-step
4//! temporal patterns with per-step timing constraints, repetition specs,
5//! negation, and configurable NFA state management.
6
7pub mod eventlabel_traits;
8pub mod functions;
9pub mod matcherconfig_traits;
10pub mod types;
11
12// Re-export all types
13pub use functions::*;
14pub use types::*;
15
16#[cfg(test)]
17mod tests;