Skip to content

Commit

Permalink
Update src/mh-core.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
cpfiffer authored Feb 15, 2024
1 parent f53d5b1 commit b9dc1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mh-core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function AbstractMCMC.step(
initial_params=nothing,
kwargs...
)
params = init_params === nothing ? propose(rng, sampler, model) : init_params
params = initial_params === nothing ? propose(rng, sampler, model) : initial_params
transition = AdvancedMH.transition(sampler, model, params, false)
return transition, transition
end
Expand Down

0 comments on commit b9dc1c5

Please sign in to comment.