Skip to content

Commit

Permalink
Another name change
Browse files Browse the repository at this point in the history
  • Loading branch information
MargaretDuff committed Nov 8, 2023
1 parent c903ab8 commit 6c63892
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Wrappers/Python/cil/optimisation/operators/BlockOperator.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ def adjoint(self, x, out=None):
x_b.get_item(row))
else:

out_col_operator = out.get_item(col) # out_col_operator points to the column in out that we are updating
out_col_operator += self.get_item(row,col).adjoint(
temp_out_col = out.get_item(col) # out_col_operator points to the column in out that we are updating
temp_out_col += self.get_item(row,col).adjoint(
x_b.get_item(row),
)

Expand Down

0 comments on commit 6c63892

Please sign in to comment.