Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/inversion_ideas/minimize/_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def conjugate_gradient(
initial_model : (n_params) array
Initial model used to start the minimization.
preconditioner : (n_params, n_params) array, sparse array or LinearOperator or Callable, optional
Matrix used as preconditioner in the conjugant gradient algorithm.
Matrix used as preconditioner in the conjugate gradient algorithm.
If None, no preconditioner will be used.
A callable can be passed to build the preconditioner dynamically: such
callable should take a single ``initial_model`` argument and return an
Expand Down
2 changes: 1 addition & 1 deletion src/inversion_ideas/minimize/_minimizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __call__(
initial_model : (n_params) array
Initial model to start the minimization.
preconditioner : (n_params, n_params) array, sparray or LinearOperator or Callable, optional
Matrix used as preconditioner in the conjugant gradient algorithm.
Matrix used as preconditioner in the conjugate gradient algorithm.
If None, no preconditioner will be used.
A callable can be passed to build the preconditioner dynamically: such
callable should take a single ``initial_model`` argument and return an
Expand Down
Loading