pointprocesses/
lib.rs

1//! A crate for modelling, simulation and statistical inference
2//! of point processes.
3pub mod spatial;
4pub mod likelihood;
5pub mod temporal;
6pub mod estimators;
7
8/// Time-dependent processes should be available in the crate root.
9pub use self::temporal::*;