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
//! Point processes
//!
//! - Birth-death process [BirthDeath]
//! - Continuous-time random walk [CTRW]
//! - Poisson process [Poisson]

pub mod birth_death;
pub use birth_death::*;

pub mod ctrw;
pub use ctrw::*;

pub mod poisson;
pub use poisson::*;