Revision 6ba44e876ef54959221e2f5d9601ff92efd7e8e8 authored by rinkk on 22 March 2021, 10:54:17 UTC, committed by Lars Bilke on 26 March 2021, 09:48:18 UTC
1 parent 42c0b49
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