flow-gate-core 0.1.0

Pure-Rust implementation of the ISAC Gating-ML 2.0 gate evaluation engine — transforms, gates, and event matrices
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod boolean;
mod ellipsoid;
mod polygon;
mod rectangle;
mod registry;

pub use boolean::{BooleanGate, BooleanOp, BooleanOperand};
pub use ellipsoid::{EllipsoidCovariance, EllipsoidDimension, EllipsoidGate};
pub use polygon::{is_left, winding_number, PolygonDimension, PolygonGate};
pub use rectangle::{RectangleDimension, RectangleGate};
pub use registry::{GateKind, GateRegistry};