stochastic_abm/
lib.rs

1/// A library for simulating stochastic processes.
2///
3/// This library currently includes the implementation of Arithmetic Brownian Motion (ABM).
4/// More stochastic processes can be added in future versions.
5
6pub mod abm;
7