Skip to content

Commit

Permalink
corrected Prior.multiply_with_Hessian()
Browse files Browse the repository at this point in the history
  • Loading branch information
evgueni-ovtchinnikov committed May 16, 2024
1 parent 608631c commit 16547a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xSTIR/pSTIR/STIR.py
Original file line number Diff line number Diff line change
Expand Up @@ -2348,7 +2348,7 @@ def multiply_with_Hessian(self, current_estimate, input_, out=None):
if out is None or out.handle is None:
out = input_.get_uniform_copy(0.0)
try_calling(pystir.cSTIR_priorComputeHessianTimesInput
(self.handle, current_estimate.handle, input_.handle, subset, out.handle))
(self.handle, current_estimate.handle, input_.handle, out.handle))
return out


Expand Down

0 comments on commit 16547a5

Please sign in to comment.