//! Homogeneous Poisson point-process model.
//!
//! This module provides:
//!
//! - [`PoissonProcess`] — simulation via inverse-CDF exponential
//! interarrivals (see [`core`]).
//! - [`estimation`] — closed-form maximum-likelihood estimation,
//! goodness-of-fit diagnostics (AIC / BIC), and time-rescaling
//! residuals.
//! - [`errors`] — error types for invalid rate parameters.
//!
//! The Poisson process serves as the natural **null hypothesis** when
//! benchmarking self-exciting models such as Hawkes.
pub use PoissonProcess;