diff --git a/src/AbstractMCMC.jl b/src/AbstractMCMC.jl index 8408d3df..3b38c583 100644 --- a/src/AbstractMCMC.jl +++ b/src/AbstractMCMC.jl @@ -88,11 +88,11 @@ Recompute the log-probability of the `model` based on the given `state` and retu function recompute_logprob!!(rng, model, sampler, state) end """ - getparams + getparams(state) -TODO +Returns the values of the parameters in the state. """ -function getparams end +function getparams(state) end include("samplingstats.jl") include("logging.jl")