https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 1312b7f5467ad2832638e24b483dd3029cb9868e authored by Jaime Garibay on 01 December 2020, 20:15:54 UTC
[CT] A test for transport with sorption via surface complexation modeling
Tip revision: 1312b7f
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