Skip to content
Snippets Groups Projects
MultilevelChainSampler.jl 716 B
Newer Older
Luca Lenz's avatar
Luca Lenz committed

module MultilevelChainSampler

Luca Lenz's avatar
Luca Lenz committed
export StaticProposal, RandomWalk, CyclicProposal
export TransformedProposal, MultiProposal, ComponentwiseProposal
Luca Lenz's avatar
Luca Lenz committed
export CyclicWalk

Luca Lenz's avatar
Luca Lenz committed
export evaluate
export LogDensity

# hierarchical output 
export subchain
export MultilevelChains
Luca Lenz's avatar
Luca Lenz committed


# implement these functions to support a new sampler
export supports_sampler
export saves_logprob
export saves_reject
include("proposal.jl")
include("logdensity.jl")
include("samplers/metropolis_hastings.jl")
include("samplers/delayed_acceptance.jl")
Luca Lenz's avatar
Luca Lenz committed
end