https://mooseframework.inl.gov
AffineInvariantStretchDecision.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 #include "PMCMCDecision.h"
14 
19 {
20 public:
22 
24 
25 protected:
26  virtual void computeTransitionVector(std::vector<Real> & tv,
27  const std::vector<Real> & evidence) override;
28 
29 private:
32 
34  const std::vector<Real> & _step_size;
35 };
PMCMCDecision will help making sample accept/reject decisions in MCMC schemes (for e...
Definition: PMCMCDecision.h:22
A class for performing Affine Invariant Ensemble MCMC with stretch sampler.
AffineInvariantStretchDecision(const InputParameters &parameters)
const AffineInvariantStretchSampler *const _aiss
Affine stretch sampler.
virtual void computeTransitionVector(std::vector< Real > &tv, const std::vector< Real > &evidence) override
Compute the transition probability vector (after the computation of evidence)
const std::vector< Real > & _step_size
Affine step sizes.
const InputParameters & parameters() const
A class for performing Affine Invariant Ensemble MCMC with stretch sampler.