Skip to content

Commit

Permalink
Forward discard_initial and thinning to bundle_samples (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion authored Jun 30, 2021
1 parent a98f057 commit 2fe2dff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
keywords = ["markov chain monte carlo", "probablistic programming"]
license = "MIT"
desc = "A lightweight interface for common MCMC methods."
version = "3.2.0"
version = "3.2.1"

[deps]
BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66"
Expand Down
4 changes: 4 additions & 0 deletions src/sample.jl
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ function mcmcsample(
state,
chain_type;
stats=stats,
discard_initial=discard_initial,
thinning=thinning,
kwargs...
)
end
Expand Down Expand Up @@ -267,6 +269,8 @@ function mcmcsample(
state,
chain_type;
stats=stats,
discard_initial=discard_initial,
thinning=thinning,
kwargs...
)
end
Expand Down

2 comments on commit 2fe2dff

@devmotion
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/39958

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v3.2.1 -m "<description of version>" 2fe2dff14848be5134c8bfede1d70281265efaca
git push origin v3.2.1

Please sign in to comment.