From: Sean Ingimarson Date: Thu, 9 Feb 2023 13:31:20 +0000 (-0500) Subject: doc edits for KINSol X-Git-Tag: v9.5.0-rc1~568^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e1212fe73adf46b6780fb72a6ea6cc9297184d7;p=dealii.git doc edits for KINSol --- diff --git a/include/deal.II/sundials/kinsol.h b/include/deal.II/sundials/kinsol.h index 49475b63c6..2bbc4465fb 100644 --- a/include/deal.II/sundials/kinsol.h +++ b/include/deal.II/sundials/kinsol.h @@ -517,9 +517,9 @@ namespace SUNDIALS * that this may not converge, or may converge very slowly. * * A call to this function should store in `dst` the result of $J^{-1}$ - * applied to `rhs`, i.e., `J*dst = rhs`. It is the user's responsibility - * to set up proper solvers and preconditioners inside this function - * (or in the `setup_jacobian` callback above). + * applied to `rhs`, i.e., $J \cdot dst = rhs$. It is the user's + * responsibility to set up proper solvers and preconditioners inside this + * function (or in the `setup_jacobian` callback above). * * * Arguments to the function are: @@ -569,7 +569,7 @@ namespace SUNDIALS * the Jacobian, then KINSOL does not call setup_jacobian() again. If, on * the contrary, internal KINSOL convergence tests fail, then KINSOL calls * setup_jacobian() again with updated vectors and coefficients so that - * successive calls to solve_jacobian_systems() lead to better convergence + * successive calls to solve_jacobian_system() lead to better convergence * in the Newton process. * * If you do not specify a `solve_with_jacobian` function, then only a @@ -577,13 +577,13 @@ namespace SUNDIALS * converge, or may converge very slowly. * * A call to this function should store in `dst` the result of $J^{-1}$ - * applied to `rhs`, i.e., `J*dst = rhs`. It is the user's responsibility - * to set up proper solvers and preconditioners inside this function - * (or in the `setup_jacobian` callback above). The function attached - * to this callback is also provided with a tolerance to the linear solver, - * indicating that it is not necessary to solve the linear system with - * the Jacobian matrix exactly, but only to a tolerance that KINSOL will - * adapt over time. + * applied to `rhs`, i.e., $J \cdot dst = rhs$. It is the user's + * responsibility to set up proper solvers and preconditioners inside this + * function (or in the `setup_jacobian` callback above). The function + * attached to this callback is also provided with a tolerance to the linear + * solver, indicating that it is not necessary to solve the linear system + * with the Jacobian matrix exactly, but only to a tolerance that KINSOL + * will adapt over time. * * Arguments to the function are: *