1
2
3
4
5
6
7
8
9
10
11
#![allow(non_snake_case)]
/// The acceptable amount of difference between a value and its approximation.
const APPROXIMATION_TOLERANCE: f64 = 1e-8;

pub mod xyk;
pub mod balancer {}
pub mod volatility {}

pub mod math_utils;

pub(crate) mod debug;