https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: eb0e46cb1e64c2adeed211f6f79110617dee32d3 authored by Christoph Lehmann on 04 April 2023, 10:58:03 UTC
Merge branch 'matrix-output' into 'master'
Tip revision: eb0e46c
NonlinearSolverStatus.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

#pragma once

namespace NumLib
{
/// Status of the non-linear solver.
struct NonlinearSolverStatus
{
    bool error_norms_met = false;
    int number_iterations = -1;
};
}  // namespace NumLib
back to top