Skip to main content

pictl_algos/
lib.rs

1#![doc = "High-performance, branchless algorithm implementations for pictl process mining."]
2#![doc = ""]
3#![doc = "This crate implements discovery, conformance, and analysis algorithms optimized for:"]
4#![doc = "- Minimal branch misses (cache-friendly execution)"]
5#![doc = "- Predictable latency (sub-millisecond for WASM)"]
6#![doc = "- Deterministic behavior (same input → same output every time)"]
7#![doc = "- SIMD vectorization where applicable"]
8
9pub mod alpha;
10pub mod columnar;
11pub mod conformance;
12pub mod dfg;
13pub mod heuristic;
14pub mod streaming;
15
16pub use pictl_types;
17
18pub const VERSION: &str = "26.5.4";