Revision b9d5fea916d5eb46940b1b86875a04f1a9540c6d authored by Haibing Shao on 19 January 2023, 14:30:59 UTC, committed by Haibing Shao on 15 February 2023, 08:04:12 UTC
1 parent 145c422
Raw File
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