Skip to content

Commit

Permalink
Slight change
Browse files Browse the repository at this point in the history
  • Loading branch information
fourndo committed Nov 30, 2023
1 parent 9ce0956 commit 2d98d0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimPEG/dask/electromagnetics/time_domain/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def deriv_block(

def update_deriv_blocks(address, indices, derivatives, solve):
columns, local_ind = indices[address]
derivatives[:, local_ind] = solve[:, columns]
derivatives[address][:, local_ind] = solve[:, columns]


def get_field_deriv_block(
Expand Down Expand Up @@ -331,7 +331,7 @@ def get_field_deriv_block(
update_deriv_blocks(
(s_id, r_id, b_id),
indices,
ATinv_df_duT_v[(s_id, r_id, b_id)],
ATinv_df_duT_v,
solve,
)
)
Expand Down

0 comments on commit 2d98d0a

Please sign in to comment.