diffusionx/
lib.rs

1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
2//!
3//! ## 简体中文
4//!
5//! 中文版本可见[这里](https://github.com/tangxiangong/diffusionx/blob/stable/README-zh.md).
6
7mod error;
8pub use error::*;
9
10/// Random number generation module
11pub mod random;
12
13/// Stochastic process simulation module
14pub mod simulation;
15
16/// Utility functions and algorithms
17pub mod utils;
18
19/// Visualization module
20#[cfg(feature = "visualize")]
21pub mod visualize;