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
12
13
14
15
16
mod fasinh;
mod hyperlog;
mod linear;
mod logarithmic;
mod logicle;
mod unified;

pub use fasinh::FASinhTransform;
pub use hyperlog::HyperlogTransform;
pub use linear::LinearTransform;
pub use logarithmic::LogarithmicTransform;
pub use logicle::{
    apply_transform_logicle, logicle_forward, logicle_inverse, LogicleLut, LogicleParams,
    LogicleTransform,
};
pub use unified::TransformKind;