19#include <unordered_map>
Data structure for managing point distances and cluster allocations.
Parameter management for Bayesian nonparametric MCMC models.
Manages distance matrices and cluster allocations for points.
Definition Data.hpp:27
void set_old_K(int new_K)
Store current number of clusters for potential rollback.
Definition Process.hpp:225
void restore_state()
Restores the cached state into the data object.
Definition Process.hpp:230
virtual double gibbs_prior_new_cluster_obs(int obs_idx) const
Compute prior probability for creating a new cluster for a specific observation.
Definition Process.hpp:149
virtual double gibbs_prior_existing_cluster(int cls_idx, int obs_idx) const =0
Compute prior probability for assigning observation to existing cluster.
int old_K
Number of clusters associated with the stored previous state.
Definition Process.hpp:60
const Params & params
Reference to the parameters object containing process hyperparameters.
Definition Process.hpp:49
virtual double prior_ratio_split(int ci, int cj) const =0
Compute prior ratio for split move in split-merge algorithm.
void set_old_cluster_members(const std::unordered_map< int, std::vector< int > > &new_cluster_members)
Store current cluster members for potential rollback.
Definition Process.hpp:216
const double log_a
Precomputed logarithm of total mass parameter for efficiency.
Definition Process.hpp:78
virtual double prior_ratio_shuffle(int size_old_ci, int size_old_cj, int ci, int cj) const =0
Compute prior ratio for shuffle move in split-merge algorithm.
virtual double prior_ratio_merge(int size_old_ci, int size_old_cj) const =0
Compute prior ratio for merge move in split-merge algorithm.
std::unordered_map< int, std::vector< int > > old_cluster_members
Storage for previous cluster members to enable rollback in case of rejection or for computation requi...
Definition Process.hpp:57
void set_old_allocations(const Eigen::VectorXi &new_allocations)
Store current allocations for potential rollback.
Definition Process.hpp:206
int idx_j
Index of second observation involved in split-merge move.
Definition Process.hpp:75
void set_idx_i(int i)
Set index of first observation in split-merge pair.
Definition Process.hpp:244
virtual ~Process()
Virtual destructor for proper cleanup of derived classes.
Definition Process.hpp:268
Eigen::VectorXi old_allocations
Storage for previous allocations to enable rollback in case of rejection or for computation requiring...
Definition Process.hpp:53
int idx_i
Index of first observation involved in split-merge move.
Definition Process.hpp:72
Process(Data &d, const Params &p)
Constructor initializing process with data and parameters.
Definition Process.hpp:91
const Eigen::VectorXi & old_allocations_view() const
Provides read-only access to the stored previous allocations.
Definition Process.hpp:237
void set_idx_j(int j)
Set index of second observation in split-merge pair.
Definition Process.hpp:251
virtual Eigen::VectorXd gibbs_prior_existing_clusters(int obs_idx) const =0
Compute prior probabilities for assigning observation to all existing clusters.
const std::unordered_map< int, std::vector< int > > & old_cluster_members_view() const
Provides read-only access to the stored previous cluster members.
Definition Process.hpp:67
virtual void update_params()=0
Update process parameters during MCMC sampling.
virtual double gibbs_prior_new_cluster() const =0
Compute prior probability for creating a new cluster.
Data & data
Reference to the data object containing observations and allocations.
Definition Process.hpp:45
Structure containing all parameters needed for the NGGP (Normalized Generalized Gamma Process) and DP...
Definition Params.hpp:35