Revision d9825ecba2b738d77aa62f3e19c17bb689ee8b26 authored by Dmitry Yu. Naumov on 20 February 2021, 10:45:34 UTC, committed by Dmitry Yu. Naumov on 20 February 2021, 10:45:34 UTC
Use MPL in ThermoMechanics

See merge request ogs/ogs!3429
2 parent s 1e33303 + 2b799b1
Raw File
CreateJacobianAssembler.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

#include "BaseLib/ConfigTree.h"

namespace ProcessLib
{
class AbstractJacobianAssembler;

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