You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Newton.jl
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ This is the Newton-Krylov Solver for `F(x, p0) = 0` with Jacobian w.r.t. `x` wri
43
43
- `x0` initial guess
44
44
- `p0` set of parameters to be passed to `F` and `J`
45
45
- `options::NewtonPar` variable holding the internal parameters used by the `newton` method
46
-
- `callback` function passed by the user which is called at the end of each iteration. The default one is the following `cbDefault(x, f, J, res, it, itlinear, options; k...) = true`. Can be used to update a preconditionner for example. You can use for example `cbMaxNorm` to limit the residuals norms. If yo want to specify your own, the arguments passed to the callback are as follows
46
+
- `callback` function passed by the user which is called at the end of each iteration. The default one is the following `cbDefault(state; k...) = true`. Can be used to update a preconditionner for example. You can use for example `cbMaxNorm` to limit the residuals norms. If yo want to specify your own, the elements passed in `state` to the callback are the following
0 commit comments