Skip to content

Commit

Permalink
use scipy.sparse
Browse files Browse the repository at this point in the history
  • Loading branch information
Blunde1 committed May 8, 2024
1 parent 04aa5fd commit 4c15a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/analysis/_es_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ def adaptive_localization_progress_callback(
Z.data[:] = 1
Z = Z.tolil()
Z.setdiag(1)
Z = sp.csc_matrix(Z)
Z = sp.sparse.csc_matrix(Z)

Prec_u_sub = gspme.prec_sparse(
X_local.T,
Expand Down

0 comments on commit 4c15a03

Please sign in to comment.