Implementation of the Newton-Raphson method for solving nonlinear equations. More...
#include <ikarus/solver/nonlinearsolver/newtonraphson.hh>
Public Types | |
using | Settings = NRSettings |
using | SignatureTraits = typename F::Traits |
using | CorrectionType = typename SignatureTraits::template Range< 0 > |
Type of the correction of x += deltaX. More... | |
using | JacobianType = typename SignatureTraits::template Range< 1 > |
Compile-time boolean indicating if the linear solver satisfies the non-linear solver concept. More... | |
using | Domain = typename SignatureTraits::Domain |
Type representing the parameter vector of the function. More... | |
using | UpdateFunction = UF |
Type representing the update function. More... | |
using | DifferentiableFunction = F |
Type of the non-linear operator. More... | |
using | State = NonlinearSolverStateType< F > |
Public Member Functions | |
template<typename LS2 = LS, typename UF2 = UF> | |
NewtonRaphson (const DifferentiableFunction &residual, LS2 &&linearSolver={}, UF2 &&updateFunction={}) | |
Constructor for NewtonRaphson. More... | |
void | setup (const Settings &settings) |
Set up the solver with the given settings. More... | |
Ikarus::NonLinearSolverInformation | solve (Domain &x) |
Solve the nonlinear system. More... | |
auto & | residual () |
Access the function. More... | |
Broadcaster< M > & | station () |
const Broadcaster< M > & | station () const |
Static Public Attributes | |
static constexpr bool | isLinearSolver = Ikarus::Concepts::LinearSolverCheck<LS, JacobianType, CorrectionType> |
F | Type of the differentiable function to solve. |
LS | Type of the linear solver used internally (default is SolverDefault). |
UF | Type of the update function (default is UpdateDefault). |
using Ikarus::NewtonRaphson< F, LS, UF >::CorrectionType = typename SignatureTraits::template Range<0> |
using Ikarus::NewtonRaphson< F, LS, UF >::DifferentiableFunction = F |
using Ikarus::NewtonRaphson< F, LS, UF >::Domain = typename SignatureTraits::Domain |
using Ikarus::NewtonRaphson< F, LS, UF >::JacobianType = typename SignatureTraits::template Range<1> |
using Ikarus::NewtonRaphson< F, LS, UF >::Settings = NRSettings |
using Ikarus::NewtonRaphson< F, LS, UF >::SignatureTraits = typename F::Traits |
|
inherited |
using Ikarus::NewtonRaphson< F, LS, UF >::UpdateFunction = UF |
|
inlineexplicit |
residual | residual to solve. |
linearSolver | Linear solver used internally (default is SolverDefault). |
updateFunction | Update function (default is UpdateDefault). |
|
inline |
|
inline |
settings | Newton-Raphson settings. |
|
inline |
x | Where the solution should be stored. |
|
inlineinherited |
|
inlineinherited |
|
staticconstexpr |