Skip to content

Commit

Permalink
Update rstar tests (#393)
Browse files Browse the repository at this point in the history
* Disable splitting for test

* Increment patch version number
  • Loading branch information
sethaxen authored Dec 14, 2022
1 parent e5dbc07 commit 8c3f5ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 = "c7f686f2-ff18-58e9-bc7b-31028e88f75d"
keywords = ["markov chain monte carlo", "probablistic programming"]
license = "MIT"
desc = "Chain types and utility functions for MCMC simulations."
version = "5.6.0"
version = "5.6.1"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand Down
2 changes: 1 addition & 1 deletion test/rstar_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ classif = DecisionTreeClassifier()
chn_notmixed = Chains(val)

# Restuling R value should be close to two, i.e. the classifier should be able to learn an almost perfect decision boundary between chains.
R = rstar(classif, chn_notmixed)
R = rstar(classif, chn_notmixed; split_chains=1)
@test mean(R) 2 atol=0.1
end

2 comments on commit 8c3f5ed

@sethaxen
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/74096

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 v5.6.1 -m "<description of version>" 8c3f5edfd9d95824be5108dea3619a2b853d64c9
git push origin v5.6.1

Please sign in to comment.