version 0.4.1
nonlinearsolverbase.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
13
14namespace Ikarus {
15
22template <typename F, typename... Args>
24 : public Broadcasters<void(NonLinearSolverMessages), void(NonLinearSolverMessages, double),
25 void(NonLinearSolverMessages, int),
26 void(NonLinearSolverMessages, const NonlinearSolverStateType<F>&), Args...>
27{
29};
30
31} // namespace Ikarus
State for all nonlinear solvers.
Enums for observer messages.
Implementation of the observer design pattern with broadcasters.
Definition: assemblermanipulatorbuildingblocks.hh:22
Base for all nonlinear solvers. Defines the message interface that can be broadcasted to listeners.
Definition: nonlinearsolverbase.hh:27
State for nonlinear solvers.
Definition: nonlinearsolverstate.hh:23
Fuses together multiple function signatures that can be emitted by one broadcaster....
Definition: broadcaster.hh:81