//! Utility functions to compute the log-likelihood of the data under the models.
//! The general form is given by
//! $$
//! \ell(\Theta) = \sum_i \log(\lambda_{t_i}) - \int_0^T \lambda_t dt
//! $$
pub use ;
use *;
use crate;
/// Log-likelihood of the data under the given Poisson model
/// $$ \ell(\lambda) =
/// N\ln\lambda - \lambda T
/// $$