swh:1:snp:d80eec3f654c152adbdd6e641362bcb340d39fe2
Raw File
Tip revision: 39fd22f3e68be18846d7f528b878d999eefad0d6 authored by serban-nicusor-toptal on 27 September 2021, 14:37:23 UTC
release/v2.28.0-rc1: updating version numbers
Tip revision: 39fd22f
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