version 0.4.1
nonlinearsolverstate.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2025 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
9#pragma once
10
12
13namespace Ikarus {
14
21template <typename D, typename CT>
23{
24 using Domain = D;
25 using CorrectionType = CT;
26
27 const Domain& domain;
29
30 double rNorm{};
31 double dNorm{};
32 int iteration{};
33};
34
35namespace Impl {
36
37 template <typename SignatureTraits, int n>
38 struct CorrectionType;
39
40 template <typename SignatureTraits>
41 struct CorrectionType<SignatureTraits, 1>
42 {
43 using type = typename SignatureTraits::template Range<0>;
44 };
45
46 template <typename SignatureTraits>
47 struct CorrectionType<SignatureTraits, 2>
48 {
49 using type = typename SignatureTraits::template Range<1>;
50 };
51
52 template <typename F>
53 struct NonlinearSolverStateFactory
54 {
55 private:
56 using SignatureTraits = typename F::Traits;
57 using Domain = typename SignatureTraits::Domain;
58
59 constexpr static int nDerivatives = F::nDerivatives;
60
61 public:
62 using type = NonlinearSolverState<Domain, typename CorrectionType<SignatureTraits, nDerivatives>::type>;
63 };
64} // namespace Impl
65
71template <typename F>
73
74} // namespace Ikarus
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