Skip to content

Commit

Permalink
Remove unused verbose argument
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeda committed Feb 6, 2024
1 parent 1a9b975 commit 6597865
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions docs/source/Adaptive.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,7 @@ def g(X):
)

# Assimilate data
X_i = adaptive_smoother.assimilate(
X=X_i, Y=Y_i, D=D_i, alpha=alpha_i, verbose=False
)
X_i = adaptive_smoother.assimilate(X=X_i, Y=Y_i, D=D_i, alpha=alpha_i)


X_adaptive_posterior = np.copy(X_i)
Expand Down
1 change: 0 additions & 1 deletion tests/test_experimental.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,6 @@ def zero_correlation_threshold(ensemble_size):
# Pass a function that always returns zero,
# no matter what the ensemble size is
correlation_threshold=zero_correlation_threshold,
verbose=True,
)

print()
Expand Down

0 comments on commit 6597865

Please sign in to comment.