DUNE-FEM (unstable)

capabilities.hh
1#ifndef DUNE_FEM_SPACE_MAPPER_CAPABILITIES_HH
2#define DUNE_FEM_SPACE_MAPPER_CAPABILITIES_HH
3
4
5namespace Dune
6{
7
8 namespace Fem
9 {
10
11 namespace Capabilities
12 {
13
20 template< class Mapper >
21 struct isAdaptiveDofMapper
22 {
23 static const bool v = false;
24 };
25
26
27 // const specialization
28 // --------------------
29
30 template< class Mapper >
31 struct isAdaptiveDofMapper< const Mapper >
32 {
33 static const bool v = isAdaptiveDofMapper< Mapper >::v;
34 };
35
36 } // namespace Capabilities
37
38 } // namespace Fem
39
40} // namespace Dune
41
42#endif // #ifndef DUNE_FEM_SPACE_MAPPER_CAPABILITIES_HH
Dune namespace.
Definition: alignedallocator.hh:13
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 27, 22:29, 2024)