dune-fem 2.12-git
Loading...
Searching...
No Matches
space/lagrange/capabilities.hh
Go to the documentation of this file.
1#ifndef DUNE_FEM_SPACE_LAGRANGE_CAPABILITIES_HH
2#define DUNE_FEM_SPACE_LAGRANGE_CAPABILITIES_HH
3
7
8namespace Dune
9{
10
11 namespace Fem
12 {
13
14 namespace Capabilities
15 {
16 // LagrangeDiscreteFunctionSpace
17 //------------------------------
18
19 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
21 {
22 static const bool v = true;
23 };
24
25
26 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
28 {
29 static const bool v = true;
30 static const int order = polOrder;
31 };
32
33
34 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
39
40
41 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
42 struct isLocalized< LagrangeDiscreteFunctionSpace< FunctionSpace, GridPart, polOrder, Storage > >
43 {
44 static const bool v = true;
45 };
46
47
48 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
49 struct isAdaptive< LagrangeDiscreteFunctionSpace< FunctionSpace, GridPart, polOrder, Storage > >
50 {
51 static const bool v = true;
52 };
53
54
55 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
56 struct threadSafe< LagrangeDiscreteFunctionSpace< FunctionSpace, GridPart, polOrder, Storage > >
57 {
58 static const bool v = false;
59 };
60
61
62 template< class FunctionSpace, class GridPart, int polOrder, class Storage >
63 struct viewThreadSafe< LagrangeDiscreteFunctionSpace< FunctionSpace, GridPart, polOrder, Storage > >
64 {
65 static const bool v = true;
66 };
67
68
69
70 // DynamicLagrangeDiscreteFunctionSpace
71 //-------------------------------------
72
73 template< class FunctionSpace, class GridPart, class Storage >
75 {
76 static const bool v = true;
77 };
78
79
80 // hasStaticPolynomialOrder we use default
81
82 template< class FunctionSpace, class GridPart, class Storage >
87
88
89 template< class FunctionSpace, class GridPart, class Storage >
91 {
92 static const bool v = true;
93 };
94
95
96 template< class FunctionSpace, class GridPart, class Storage >
98 {
99 static const bool v = true;
100 };
101
102
103 template< class FunctionSpace, class GridPart, class Storage >
105 {
106 static const bool v = false;
107 };
108
109
110 template< class FunctionSpace, class GridPart, class Storage >
112 {
113 static const bool v = true;
114 };
115
116 } // namespace Capabilities
117
118 } // namespace Fem
119
120} // namespace Dune
121
122#endif // #ifndef DUNE_FEM_SPACE_LAGRANGE_CAPABILITIES_HH
specialize with 'true' if implementation guarantees conforming level grids. (default=false)
Definition gridpart/common/capabilities.hh:70
Lagrange discrete function space.
Definition lagrange/space.hh:131
specialize with true if polynomial order does not depend on the grid (part) entity
Definition space/common/capabilities.hh:24
static const bool v
Definition space/common/capabilities.hh:25
specialize with true if polynomial order fixed and compile time static
Definition space/common/capabilities.hh:37
static const bool v
Definition space/common/capabilities.hh:38
static const int order
Definition space/common/capabilities.hh:39
specialize with true if space is always continuous
Definition space/common/capabilities.hh:50
static const bool v
Definition space/common/capabilities.hh:51
specialize with true if the space is localized, * i.e., the basis function set is based on a shape fu...
Definition space/common/capabilities.hh:68
static const bool v
Definition space/common/capabilities.hh:69
specialize with true if space can be used with AdaptiveDiscreteFunction
Definition space/common/capabilities.hh:81
static const bool v
Definition space/common/capabilities.hh:82
specialize with true if the space implementation is thread safe
Definition space/common/capabilities.hh:105
static const bool v
Definition space/common/capabilities.hh:106
specialize with true if the space implementation is thread safe, while it is not modified
Definition space/common/capabilities.hh:119
static const bool v
Definition space/common/capabilities.hh:120
A vector valued function space.
Definition functionspace.hh:60