21template <
typename D,
typename CT>
37 template <
typename SignatureTraits,
int n>
38 struct CorrectionType;
40 template <
typename SignatureTraits>
41 struct CorrectionType<SignatureTraits, 1>
43 using type =
typename SignatureTraits::template Range<0>;
46 template <
typename SignatureTraits>
47 struct CorrectionType<SignatureTraits, 2>
49 using type =
typename SignatureTraits::template Range<1>;
53 struct NonlinearSolverStateFactory
56 using SignatureTraits =
typename F::Traits;
57 using Domain =
typename SignatureTraits::Domain;
59 constexpr static int nDerivatives = F::nDerivatives;
62 using type = NonlinearSolverState<Domain, typename CorrectionType<SignatureTraits, nDerivatives>::type>;
Contains stl-like type traits.
Definition: assemblermanipulatorbuildingblocks.hh:22
State for nonlinear solvers.
Definition: nonlinearsolverstate.hh:23
const CorrectionType & correction
Definition: nonlinearsolverstate.hh:28
D Domain
Definition: nonlinearsolverstate.hh:24
CT CorrectionType
Definition: nonlinearsolverstate.hh:25
const Domain & domain
Definition: nonlinearsolverstate.hh:27
int iteration
Definition: nonlinearsolverstate.hh:32
double dNorm
Definition: nonlinearsolverstate.hh:31
double rNorm
Definition: nonlinearsolverstate.hh:30