Newton¶
Source: solvers/newton.py
The standard Newton-Raphson solver which always takes the ‘full’ Newton step.
Other options¶
linear_solver—strThe linear solver to use within the nonlinear solver
abs_tol—float· default1e-10Absolute tolerance in the convergence criteria
rel_tol—float· default1e-08Relative tolerance in the convergence criteria
max_its—int· default25Maximum number of iterations allowed before issuing an error/exception
verbose—bool· defaultFalsePrint the Newton convergence history (per-iteration residual norms, including any line-search sub-iterations) after each solve