Revision c9a92d10a14be7e7bb15c2b54253fb973009a3c2 authored by Dmitri Naumov on 18 May 2021, 19:23:40 UTC, committed by Dmitry Yu. Naumov on 03 June 2021, 16:34:25 UTC
Replacing different two different access types, one
through a getPolygon() member function, another through
direct data member _node_polygon access.
1 parent c97479d
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