Revision a76943b4cb8836eec2122d136a69e4ee1b030fec authored by Tom Fischer on 07 July 2021, 07:30:50 UTC, committed by Tom Fischer on 07 July 2021, 07:30:50 UTC
[PL] Use int type for GlobalDim template argument.

See merge request ogs/ogs!3692
2 parent s 33431e9 + 3c2a5c0
Raw File
CreateTESProcess.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 <memory>
#include "ProcessLib/Process.h"

namespace ProcessLib
{
namespace TES
{
std::unique_ptr<Process> createTESProcess(
    std::string name,
    MeshLib::Mesh& mesh,
    std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
    std::vector<ProcessVariable> const& variables,
    std::vector<
        std::unique_ptr<ParameterLib::ParameterBase>> const& /*parameters*/,
    unsigned const integration_order,
    BaseLib::ConfigTree const& config);

}  // namespace TES
}  // namespace ProcessLib
back to top