1#![allow(non_snake_case)]
2/// The acceptable amount of difference between a value and its approximation.
3const APPROXIMATION_TOLERANCE: f64 = 1e-8;
45pub mod xyk;
6pub mod balancer {}
7pub mod volatility {}
89pub mod math_utils;
1011pub(crate) mod debug;