From b0d20791c5e3e3fa21de0353cba0772cd29adf58 Mon Sep 17 00:00:00 2001 From: Alexis <35051714+amontoison@users.noreply.github.com> Date: Fri, 16 Sep 2022 11:33:56 -0400 Subject: [PATCH] Update docs/src/callbacks.md Co-authored-by: Dominique --- docs/src/callbacks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/callbacks.md b/docs/src/callbacks.md index 2fd69c768..552f7a1c4 100644 --- a/docs/src/callbacks.md +++ b/docs/src/callbacks.md @@ -46,7 +46,7 @@ my_cb = my_callback3(A, b) (x, stats) = minres(A, b, callback = my_cb) ``` -Although the main goal of a callback is to add new stopping conditions, it can also retrieve informations from the workspace of a Krylov method along the iterations. +Although the main goal of a callback is to add new stopping conditions, it can also retrieve information from the workspace of a Krylov method along the iterations. We now illustrate how to store all iterates $x_k$ of the GMRES method. ```julia