https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: dcc11e5ced4c6e785c1b6e8728995ea29ac5b04b authored by Dmitry Yu. Naumov on 19 July 2023, 19:53:11 UTC
Merge branch 'UpdateFixedTimeSteppingInPrj' into 'master'
Tip revision: dcc11e5
CreateNewtonRaphsonSolverParameters.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 BaseLib
{
class ConfigTree;
}

namespace NumLib
{
struct NewtonRaphsonSolverParameters;

NewtonRaphsonSolverParameters createNewtonRaphsonSolverParameters(
    BaseLib::ConfigTree const& config);
}  // namespace NumLib
back to top