ipfrs-tensorlogic 0.2.0

Zero-copy tensor operations and logic programming for content-addressed storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Temporal Pattern Matcher — NFA-based temporal sequence pattern matching.
//!
//! Provides production-quality matching of event streams against multi-step
//! temporal patterns with per-step timing constraints, repetition specs,
//! negation, and configurable NFA state management.

pub mod eventlabel_traits;
pub mod functions;
pub mod matcherconfig_traits;
pub mod types;

// Re-export all types
pub use functions::*;
pub use types::*;

#[cfg(test)]
mod tests;