diffusionx 0.12.0

A multi-threaded crate for random number generation and stochastic process simulation, with optional GPU acceleration.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Utility functions and algorithms module
//!
//! This module provides various utility functions and algorithms used throughout the crate,
//! including mathematical functions, data structures, and computational methods specific
//! to stochastic process simulations.

mod functions;
pub use functions::*;

mod sgn;
pub use sgn::*;

#[cfg(feature = "io")]
mod csv;
#[cfg(feature = "io")]
pub use csv::*;