https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 5f084fc5374a436036d55b986d41fd1cd5a2d2e1 authored by Tom Fischer on 06 March 2023, 18:06:34 UTC
Merge branch 'NodePartitionedMeshAndPartitioningImprovements' into 'master'
Tip revision: 5f084fc
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