Implementation of an observer for logging non-linear solvers.This class inherits from the IObserver class and provides specific implementations for updating based on NonLinearSolverMessages.
#include <ikarus/utils/listener/nonlinearsolverlogger.hh>
|
using | Token = std::shared_ptr< void > |
|
◆ Token
◆ subscribe() [1/2]
auto Ikarus::Listener::subscribe |
( |
Broadcaster & |
broadcaster, |
|
|
F && |
f |
|
) |
| |
|
inlineinherited |
This function deducts the types of the arguments itself and then forwards it. If there are problems with type deduction use the function below and specify the types of the arguments manually.
- Template Parameters
-
Broadcaster | the type of the Broadcaster (for example a NonlinearSolver or ControlRoutine), can either be a pointer or value. |
F | the type of the function |
- Parameters
-
broadcaster | the broadcaster |
f | the function |
◆ subscribe() [2/2]
template<typename
Broadcaster , typename Signature , typename F >
requires (not Concepts::PointerOrSmartPointer<
Broadcaster>)
auto Ikarus::Listener::subscribe |
( |
Broadcaster & |
broadcaster, |
|
|
F && |
f |
|
) |
| |
|
inlineinherited |
- Template Parameters
-
Broadcaster | the type of the Broadcaster (for example a NonlinearSolver or ControlRoutine), can either be a pointer or value. |
Signature | the exact signature of the function F |
F | the type of the function |
- Parameters
-
broadcaster | the broadcaster |
f | the function |
◆ subscribeTo()
◆ unSubscribe()
void Ikarus::Listener::unSubscribe |
( |
Token && |
ts | ) |
|
|
inlineinherited |
◆ unSubscribeAll()
void Ikarus::Listener::unSubscribeAll |
( |
| ) |
|
|
inlineinherited |
◆ unSubscribeLast()
void Ikarus::Listener::unSubscribeLast |
( |
| ) |
|
|
inlineinherited |
◆ updateImpl() [1/3]
- Parameters
-
message | The NonLinearSolverMessages received. |
◆ updateImpl() [2/3]
- Parameters
-
message | The NonLinearSolverMessages received. |
val | The double value associated with the message. |
◆ updateImpl() [3/3]
- Parameters
-
message | The NonLinearSolverMessages received. |
intVal | The integer value associated with numberOfIterations. |
The documentation for this class was generated from the following file: