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 4ee85b8 commit b8c7b91Copy full SHA for b8c7b91
src/MLE.jl
@@ -84,9 +84,9 @@ end
84
function update_aux_estimation!(aux_est::AuxEstimation{T}, func::Optim.TwiceDifferentiable,
85
opt_result::Optim.OptimizationResults) where T
86
87
- push!(aux_est.loglikelihood, -opt_result.minimum)
88
- push!(aux_est.psi, opt_result.minimizer)
89
push!(aux_est.numerical_hessian, Optim.hessian!(func, opt_result.minimizer))
+ push!(aux_est.psi, opt_result.minimizer)
+ push!(aux_est.loglikelihood, -opt_result.minimum)
90
push!(aux_est.opt_result, opt_result)
91
return
92
end
0 commit comments