//! Mathematical constants used throughout the Balancer maths implementation
use ;
/// WAD (1e18) - used for fixed-point arithmetic
pub const WAD: U256 = uint!;
/// TWO_WAD (2e18) - used for power calculations
pub const TWO_WAD: U256 = uint!;
/// FOUR_WAD (4e18) - used for power calculations
pub const FOUR_WAD: U256 = uint!;
/// MAX_POW_RELATIVE_ERROR - used for power calculations
pub const MAX_POW_RELATIVE_ERROR: U256 = uint!;
/// RAY constant for 36 decimal precision (1e36)
pub const RAY: U256 = uint!;