1#ifndef DUNE_FEM_GRIDPART_IDGRIDPART_CAPABILITIES_HH
2#define DUNE_FEM_GRIDPART_IDGRIDPART_CAPABILITIES_HH
6#include <dune/fem/gridpart/common/capabilities.hh>
22 namespace GridPartCapabilities
25 template<
class HostGr
idPartType >
26 struct hasGrid< IdGridPart< HostGridPartType > >
28 static const bool v =
true;
32 template<
class HostGr
idPartType >
33 struct hasSingleGeometryType< IdGridPart< HostGridPartType > >
35 static const bool v = hasSingleGeometryType< HostGridPartType >::v;
36 static const unsigned int topologyId = hasSingleGeometryType< HostGridPartType >::topologyId;
40 template<
class HostGr
idPartType >
41 struct isCartesian< IdGridPart< HostGridPartType > >
43 static const bool v = isCartesian< HostGridPartType >::v;
47 template<
class HostGr
idPartType,
int codim >
48 struct hasEntity< IdGridPart< HostGridPartType >, codim >
50 static const bool v = hasEntity< HostGridPartType, codim >::v;
54 template<
class HostGr
idPartType,
int codim >
55 struct canCommunicate< IdGridPart< HostGridPartType >, codim >
57 static const bool v = canCommunicate< HostGridPartType, codim >::v;
61 template<
class HostGr
idPartType >
62 struct isConforming< IdGridPart< HostGridPartType > >
64 static const bool v = isConforming< HostGridPartType >::v;
Dune namespace.
Definition: alignedallocator.hh:13
A unique label for each type of element that can occur in a grid.