swh:1:snp:d80eec3f654c152adbdd6e641362bcb340d39fe2
Raw File
Tip revision: f5bfef7c25ec682960de248ab9925347ee936efb authored by Nicusor Serban on 23 January 2024, 12:41:41 UTC
release/v2.34.1: updating version numbers
Tip revision: f5bfef7
fixed_param_sampler.hpp
#ifndef STAN_MCMC_FIXED_PARAM_SAMPLER_HPP
#define STAN_MCMC_FIXED_PARAM_SAMPLER_HPP

#include <stan/callbacks/logger.hpp>
#include <stan/mcmc/base_mcmc.hpp>
#include <stan/mcmc/sample.hpp>

namespace stan {
namespace mcmc {

class fixed_param_sampler : public base_mcmc {
 public:
  fixed_param_sampler() {}

  sample transition(sample& init_sample, callbacks::logger& logger) {
    return init_sample;
  }
};

}  // namespace mcmc
}  // namespace stan
#endif
back to top