Skip to content

Commit

Permalink
doc edits for KINSol
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Ingimarson committed Feb 9, 2023
1 parent b484371 commit 7652c8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/deal.II/sundials/kinsol.h
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ 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
* 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).
*
Expand Down Expand Up @@ -569,15 +569,15 @@ 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
* fixed point iteration strategy can be used. Notice 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
* 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,
Expand Down

0 comments on commit 7652c8c

Please sign in to comment.