version 0.4.1
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{
22 bool success{false};
23 std::vector<Ikarus::NonLinearSolverInformation>
26};
27
28} // namespace Ikarus
Implementation of the Newton-Raphson method for solving nonlinear equations.
Definition: simpleassemblers.hh:22
Structure containing information about the control results.
Definition: controlinfos.hh:21
int totalIterations
Total number of iterations performed.
Definition: controlinfos.hh:25
bool success
Flag indicating the success of the control.
Definition: controlinfos.hh:22
std::vector< Ikarus::NonLinearSolverInformation > solverInfos
Vector containing information from nonlinear solvers.
Definition: controlinfos.hh:24