https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: d92ae5b460bce8c4b9af622078e9391d94aed8eb authored by Lars Bilke on 12 October 2021, 06:43:10 UTC
[web] Procedure update.
Tip revision: d92ae5b
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