Skip to content

Commit 9de12e3

Browse files
author
Frankie Robertson
committed
Fix double applying of prior
1 parent 9217e7f commit 9de12e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/aggregators/integrators.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,6 @@ function (integrator::TrackedLikelihoodIntegrator)(
8282
tracked_responses::TrackedResponses;
8383
kwargs...
8484
) where {F}
85-
integrator(maybe_apply_prior(f, est), ncomp; kwargs...)
85+
# No need to apply prior here because it is already applied in the tracker
86+
integrator(f, ncomp; kwargs...)
8687
end

0 commit comments

Comments
 (0)