https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 8b8bd66a6eb2bbb8db428ce98cae4e3d97e900a9 authored by yezhigangzju on 10 December 2020, 15:22:04 UTC
Merge branch 'THM_TO_TF_PM_20200919' into 'master'
Tip revision: 8b8bd66
CreateJacobianAssembler.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2020, 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

#include "BaseLib/ConfigTree.h"

namespace ProcessLib
{
class AbstractJacobianAssembler;

std::unique_ptr<AbstractJacobianAssembler> createJacobianAssembler(
    boost::optional<BaseLib::ConfigTree> const& config);
}  // ProcessLib
back to top