solver/analytical/mod.rs
1//! Analytical solutions for market making models.
2//!
3//! This module contains closed-form solutions or approximations for standard models
4//! (e.g. Avellaneda-Stoikov). These can be used for benchmarking numerical solvers
5//! or for initialization.
6
7pub mod avellaneda;
8pub mod drift;
9pub mod market_impact;
10pub mod traits;