Expand description
Implementations of the Newton method with different line search strategies
Structs§
- Backtracking
Line Search - Standard backtracking line search using the Armijo condition.
- Newton
Result - Newton
Settings - NoLine
Search - Trivial implementation of line search. Equivalent to a single, full Newton step.
Enums§
Traits§
Functions§
- newton
- Attempts to solve the non-linear equation F(u) = 0.
- newton_
line_ search - Same as
newton
, but allows specifying a line search.