version 0.4
controlinfos.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2024 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
10#pragma once
11
13
14namespace Ikarus {
15
21 bool success{false};
22 std::vector<Ikarus::NonLinearSolverInformation>
25 };
26
27} // namespace Ikarus
Implementation of the Newton-Raphson method for solving nonlinear equations.
Definition: simpleassemblers.hh:21
Structure containing information about the control results.
Definition: controlinfos.hh:20
int totalIterations
Total number of iterations performed.
Definition: controlinfos.hh:24
bool success
Flag indicating the success of the control.
Definition: controlinfos.hh:21
std::vector< Ikarus::NonLinearSolverInformation > solverInfos
Vector containing information from nonlinear solvers.
Definition: controlinfos.hh:23