https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ddd8e842c72b5dfa34708b1bd49edb4aa9e51362 authored by Tom Fischer on 11 December 2020, 15:13:29 UTC
Merge branch 'FixDocu' into 'master'
Tip revision: ddd8e84
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