Skip to content

Commit 54902dc

Browse files
authored
fix poisson fisher access (#141)
1 parent 21614e5 commit 54902dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/distributions/poisson.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function score!(score_til::Matrix{T}, y::Int, ::Type{Poisson}, param::Matrix{T},
2020
end
2121

2222
function fisher_information!(aux::AuxiliaryLinAlg{T}, ::Type{Poisson}, param::Matrix{T}, t::Int) where T
23-
aux.fisher[1, 1] = 1/param[1]
23+
aux.fisher[1, 1] = 1/param[t, 1]
2424
return
2525
end
2626

0 commit comments

Comments
 (0)