R/mcmc_sampler.R

Defines functions mcmc_sampler

#' MCMC sampler
#'
#' \code{mcmc_sampler} is a generic function for deciding which specific MCMC
#' algorithm to dispatch to. It is called internally.
#'
#' @param x argument to dispatch on (of class \code{prior_obj})
#' @param ... additional named arguments passed on to the methods
#' @noRd
mcmc_sampler <- function(x, ...) {
  UseMethod("mcmc_sampler")
}
ankargren/mfbvar documentation built on Feb. 15, 2021, 6:32 a.m.