version 0.4.1
nonlinearsolverlogger.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
12
13namespace Ikarus {
21{
22public:
23 template <typename BC>
25 this->subscribe(bc, [&](NonLinearSolverMessages message) { this->updateImpl(message); });
26 this->subscribe(bc, [&](NonLinearSolverMessages message, double val) { this->updateImpl(message, val); });
27 this->subscribe(bc, [&](NonLinearSolverMessages message, int intVal) { this->updateImpl(message, intVal); });
28 return *this;
29 }
30
37
44 void updateImpl(NonLinearSolverMessages message, double val);
45
52 void updateImpl(NonLinearSolverMessages message, int intVal);
53
54private:
55 int iters_{0};
56 double dNorm_{0};
57 double rNorm_{0};
58 double lambda_{0};
59};
60} // namespace Ikarus
Enums for observer messages.
Implementation of the observer design pattern with broadcasters.
NonLinearSolverMessages
Enum class defining non-linear solver-related messages.
Definition: broadcastermessages.hh:22
Definition: assemblermanipulatorbuildingblocks.hh:22
Definition: listener.hh:27
auto subscribe(Broadcaster &broadcaster, F &&f)
Function to subscribe to a broadcaster with a given function (either a lambda, std::function or funct...
Definition: listener.hh:43
Implementation of an observer for logging non-linear solvers.This class inherits from the IObserver c...
Definition: nonlinearsolverlogger.hh:21
void updateImpl(NonLinearSolverMessages message, int intVal)
Handles the update when a NonLinearSolverMessages with an integer value is received.
NonLinearSolverLogger & subscribeTo(BC &bc)
Definition: nonlinearsolverlogger.hh:24
void updateImpl(NonLinearSolverMessages message, double val)
Handles the update when a NonLinearSolverMessages with a double value is received.
void updateImpl(NonLinearSolverMessages message)
Handles the update when a NonLinearSolverMessages is received.