5#ifndef DUNE_GEOMETRY_UTILITY_ALGORITHMS_HH
6#define DUNE_GEOMETRY_UTILITY_ALGORITHMS_HH
18#include <dune/geometry/utility/defaultmatrixhelper.hh>
23template <
class R =
double>
24struct GaussNewtonOptions
30 R absTol = []{
using std::sqrt;
return sqrt(std::numeric_limits<R>::epsilon()); }();
41enum class GaussNewtonErrorCode
44 JACOBIAN_NOT_INVERTIBLE,
62template <
class F,
class DF,
class Domain,
63 class Range = std::invoke_result_t<F, Domain>,
64 class R =
typename Dune::FieldTraits<Domain>::real_type>
65GaussNewtonErrorCode gaussNewton (
const F& f,
const DF& df, Range y, Domain& x0,
66 GaussNewtonOptions<R> opts = {})
71 R resNorm0 = dy.two_norm();
74 for (
int i = 0; i < opts.maxIt; ++i)
77 const bool invertible = FieldMatrixHelper<R>::xTRightInvA(df(x), dy, dx);
81 return GaussNewtonErrorCode::JACOBIAN_NOT_INVERTIBLE;
85 for (
int j = 0; j < opts.maxInnerIt; ++j) {
88 resNorm = dy.two_norm();
90 if (resNorm < resNorm0)
97 if (!(resNorm < resNorm0))
98 return GaussNewtonErrorCode::STAGNATION;
104 if (resNorm < opts.absTol)
105 return GaussNewtonErrorCode::OK;
109 if (!(resNorm < opts.absTol))
110 return GaussNewtonErrorCode::TOLERANCE_NOT_REACHED;
112 return GaussNewtonErrorCode::OK;
Defines several output streams for messages of different importance.
Implements a matrix constructed from a given type representing a field and compile-time given number ...
Type traits to determine the type of reals (when working with complex numbers)
Implements a vector constructed from a given type representing a field and a compile-time given size.
Dune namespace.
Definition: alignedallocator.hh:13