/** * \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 #include "ProcessLib/Process.h" namespace ProcessLib { namespace TES { std::unique_ptr createTESProcess( std::string name, MeshLib::Mesh& mesh, std::unique_ptr&& jacobian_assembler, std::vector const& variables, std::vector< std::unique_ptr> const& /*parameters*/, unsigned const integration_order, BaseLib::ConfigTree const& config); } // namespace TES } // namespace ProcessLib