Revision 2ac95d70b59e387c11d0f1643978c2b251fd636a authored by Lars Bilke on 22 February 2021, 08:29:06 UTC, committed by Lars Bilke on 22 February 2021, 08:29:06 UTC
Some web styling and fixes

See merge request ogs/ogs!3455
2 parent s 30f9366 + 840bc12
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