Skip to content

Commit

Permalink
Fix Emcee selector bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mhauru committed Jan 8, 2025
1 parent 8af52ea commit 890bc29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcmc/emcee.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function Emcee(n_walkers::Int, stretch_length=2.0)
# ensemble sampling.
prop = AMH.StretchProposal(nothing, stretch_length)
ensemble = AMH.Ensemble(n_walkers, prop)
return Emcee{(),typeof(ensemble)}(ensemble)
return Emcee{typeof(ensemble)}(ensemble)
end

drop_space(alg::Emcee) = alg
Expand Down

0 comments on commit 890bc29

Please sign in to comment.