version 0.4.1
controlinfos.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
10#pragma once
11#include <vector>
12
14
15namespace Ikarus {
16
22{
23 bool success{false};
24 std::vector<Ikarus::NonLinearSolverInformation>
27};
28
29} // namespace Ikarus
Implementation of the solver information returned by the nonlinear solvers.
Definition: assemblermanipulatorbuildingblocks.hh:22
Structure containing information about the control results.
Definition: controlinfos.hh:22
int totalIterations
Total number of iterations performed.
Definition: controlinfos.hh:26
bool success
Flag indicating the success of the control.
Definition: controlinfos.hh:23
std::vector< Ikarus::NonLinearSolverInformation > solverInfos
Vector containing information from nonlinear solvers.
Definition: controlinfos.hh:25