We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8420fbc commit 398bd0cCopy full SHA for 398bd0c
test/turing.jl
@@ -39,7 +39,11 @@
39
chain_logp_check = sample(
40
logp_check(), externalsampler(sampler), 100; progress=false
41
)
42
- @test isapprox(logpdf.(Normal(), chain_logp_check[:x]), chain_logp_check[:lp])
+ @test isapprox(
43
+ logpdf.(Normal(), chain_logp_check[:a]) .+
44
+ logpdf.(Normal(), chain_logp_check[:b]),
45
+ chain_logp_check[:lp],
46
+ )
47
end
48
49
@testset "gibbs($sampler)" for sampler in [
0 commit comments