Stan  2.10.0
probability, sampling & optimization
dense_e_nuts.hpp
Go to the documentation of this file.
1 #ifndef STAN_MCMC_HMC_NUTS_DENSE_E_NUTS_HPP
2 #define STAN_MCMC_HMC_NUTS_DENSE_E_NUTS_HPP
3 
8 
9 namespace stan {
10  namespace mcmc {
15  template <class Model, class BaseRNG>
16  class dense_e_nuts : public base_nuts<Model, dense_e_metric,
17  expl_leapfrog, BaseRNG> {
18  public:
19  dense_e_nuts(const Model& model, BaseRNG& rng)
21  BaseRNG>(model, rng) { }
22  };
23 
24  } // mcmc
25 } // stan
26 #endif
Probability, optimization and sampling library.
dense_e_nuts(const Model &model, BaseRNG &rng)
The No-U-Turn sampler (NUTS) with multinomial sampling.
Definition: base_nuts.hpp:22
The No-U-Turn sampler (NUTS) with multinomial sampling with a Gaussian-Euclidean disintegration and d...

     [ Stan Home Page ] © 2011–2016, Stan Development Team.