pub trait LogpError: Error {
    fn is_recoverable(&self) -> bool;
}
Expand description

Errors that happen when we evaluate the logp and gradient function

Required Methods

Unrecoverable errors during logp computation stop sampling, recoverable errors are seen as divergences.

Implementors