1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Core abstractions for MCMC models.
//!
//! Provides the `Model` trait which defines the interface for MCMC models,
//! including the math backend and initialization methods needed for sampling.
use Result;
use Rng;
use crateMath;
/// Trait for MCMC models with associated math backend and initialization.
///
/// Defines the interface for models that can be used with MCMC sampling algorithms.
/// Provides access to mathematical operations needed for sampling and methods for
/// initializing the sampling position.
///
/// The trait is thread-safe to enable parallel sampling scenarios.