Revision 9f85c68bd5fe5fd8efb04d03ea5acbe6f67c671e authored by Dmitry Yu. Naumov on 14 October 2021, 09:19:59 UTC, committed by Dmitry Yu. Naumov on 14 October 2021, 09:19:59 UTC
Removed duplicate LocalDataInitializers

See merge request ogs/ogs!3843
2 parent s 9a4fa36 + fa5644e
Raw File
CreateNewtonRaphsonSolverParameters.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, 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