multiversx_sc/math.rs
1/// Only used internally for computing logarithms for ManagedDecimal and BigUint.
2pub(crate) mod internal_logarithm_i64;
3mod linear_interpolation;
4mod weighted_average;
5
6pub use linear_interpolation::{LinearInterpolationInvalidValuesError, linear_interpolation};
7pub use weighted_average::{weighted_average, weighted_average_round_up};