Revision 00c9b6d01aa8e7149eb150fd8c3bf2a65c532d63 authored by Dmitry Yu. Naumov on 08 October 2021, 16:56:31 UTC, committed by Dmitry Yu. Naumov on 08 October 2021, 16:56:31 UTC
Fixed a bug in LIE

Closes #3173

See merge request ogs/ogs!3834
2 parent s 88fbc90 + c98be45
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(
    std::optional<BaseLib::ConfigTree> const& config);
}  // ProcessLib
back to top