Revision 96815658fb3df52d570cadbf0ce551062490dde6 authored by Jan Thiedau on 31 January 2023, 11:44:42 UTC, committed by Jan Thiedau on 31 January 2023, 11:44:42 UTC
[PL/CT] Extend residual output for more than one component and to Picard solver

See merge request ogs/ogs!4451
2 parent s fbc3e2b + 4c2b8ac
Raw File
CreateForwardDifferencesJacobianAssembler.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
 */

#include <memory>

namespace BaseLib
{
class ConfigTree;
}

namespace ProcessLib
{
class AbstractJacobianAssembler;
}

namespace ProcessLib
{
std::unique_ptr<AbstractJacobianAssembler>
createForwardDifferencesJacobianAssembler(BaseLib::ConfigTree const& config);

}  // namespace ProcessLib
back to top