pictl-algos 26.5.5

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

pub mod alpha;
pub mod columnar;
pub mod conformance;
pub mod dfg;
pub mod heuristic;
pub mod streaming;

pub use pictl_types;

pub const VERSION: &str = "26.5.4";