com.cra.figaro.algorithm.sampling
The number of iterations to run before samples are collected
The number of iterations to perform between collecting samples
A sample is a map from elements to their values.
A sample is a map from elements to their values.
Get the acceptance ratio for the sampler.
Called when the algorithm is killed.
Called when the algorithm is killed. By default, does nothing. Can be overridden.
Set this flag to true to obtain debugging information.
Number of samples taken
Number of samples taken
Called when the algorithm is started before running any steps.
Called when the algorithm is started before running any steps. By default, does nothing. Can be overridden.
Kill the algorithm so that it is inactive.
Kill the algorithm so that it is inactive. It will no longer be able to provide answers.Throws AlgorithmInactiveException if the algorithm is not active.
Resume the computation of the algorithm, if it has been stopped.
Resume the computation of the algorithm, if it has been stopped. Throws AlgorithmInactiveException if the algorithm is not active.
Produce a single sample.
Produce a single sample.
Start the algorithm and make it active.
Start the algorithm and make it active. After it returns, the algorithm must be ready to provide answers. Throws AlgorithmActiveException if the algorithm is already active.
Stop the algorithm from computing.
Stop the algorithm from computing. The algorithm is still ready to provide answers after it returns. Throws AlgorithmInactiveException if the algorithm is not active.
Test Metropolis-Hastings by repeatedly running a single step from the same initial state.
Test Metropolis-Hastings by repeatedly running a single step from the same initial state. For each of a set of predicates, the fraction of times the predicate is satisfied by the resulting state is returned. By the resulting state, we mean the new state if it is accepted and the original state if not.
Metropolis-Hastings samplers.