Revision d3d08bbb7a493490f4e15f6238833efe095b4351 authored by Lars Bilke on 23 February 2021, 07:50:06 UTC, committed by Lars Bilke on 08 March 2021, 12:17:06 UTC
1 parent 30ee303
Raw File
TESLocalAssemblerInner-fwd.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 "TESLocalAssemblerInner.h"

namespace ProcessLib
{
namespace TES
{
#ifdef OGS_EIGEN_DYNAMIC_SHAPE_MATRICES

extern template class TESLocalAssemblerInner<
    LocalAssemblerTraits<ShapeMatrixPolicyType<void, 0>, 0, 0, 0>>;

static_assert(OGS_EIGEN_DYNAMIC_SHAPE_MATRICES_FLAG == 1,
              "inconsistent use of macros");
#else
static_assert(OGS_EIGEN_DYNAMIC_SHAPE_MATRICES_FLAG == 0,
              "inconsistent use of macros");
#endif
}  // namespace TES
}  // namespace ProcessLib
back to top