spawn_stochastic/
lib.rs

1/// This library provides multiple stochastic processes including:
2/// - Arithmetic Brownian Motion (ABM)
3/// - Geometric Brownian Motion (GBM)
4/// - Ornstein-Uhlenbeck Process (OU)
5/// - Feller Square Root Process
6/// - Brownian Bridge Process
7
8pub mod abm;
9pub mod gbm;
10pub mod ou;
11pub mod feller;
12pub mod bridge;