Skip to content

Commit

Permalink
fix deps / tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marius311 committed Jan 25, 2022
1 parent 9dcda0e commit 55190de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Project.toml
Expand Up @@ -66,6 +66,7 @@ ChainRules = "1.5"
Combinatorics = "1"
CompositeStructs = "0.1.1"
DataStructures = "0.17.9, 0.18"
Distributions = "0.25"
EllipsisNotation = "1.1.0"
FFTW = "1.4"
FileIO = "1.2.2"
Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Expand Up @@ -597,8 +597,8 @@ end

δf,δϕ = simulate(Cf), simulate(Cϕ)

@test_real_gradient-> logpdf( ds; f = f + α * δf, ϕ = ϕ + α * δϕ), 0, atol=2)
@test_real_gradient-> logpdf(Mixed(ds); f° =+ α * δf, ϕ° = ϕ° + α * δϕ), 0, atol=2)
@test_real_gradient-> logpdf( ds; f = f + α * δf, ϕ = ϕ + α * δϕ), 0, atol=3)
@test_real_gradient-> logpdf(Mixed(ds); f° =+ α * δf, ϕ° = ϕ° + α * δϕ), 0, atol=3)

end

Expand Down

2 comments on commit 55190de

@marius311
Copy link
Owner 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 updated: JuliaRegistries/General/53123

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 v0.8.0 -m "<description of version>" 55190de3fe34722b880a643f97341c4152d0d5d2
git push origin v0.8.0

Please sign in to comment.