Loading [MathJax]/extensions/tex2jax.js

DUNE PDELab (unstable)

subordering.hh
1// -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=8 sw=2 sts=2:
3
4#ifndef DUNE_PDELAB_ORDERING_SUBORDERING_HH
5#define DUNE_PDELAB_ORDERING_SUBORDERING_HH
6
7#include <algorithm>
8#include <array>
9#include <iterator>
10#include <memory>
11
12#include <dune/typetree/treepath.hh>
13#include <dune/typetree/proxynode.hh>
14#include <dune/typetree/childextraction.hh>
15
16#include <dune/pdelab/ordering/utility.hh>
17
18namespace Dune {
19 namespace PDELab {
20
23
25
47 template<typename BaseOrdering_, typename TreePath>
49 : public TypeTree::ProxyNode<const TypeTree::ChildForTreePath<BaseOrdering_,TreePath>>
50 {
51
53
54 public:
55
57 typedef BaseOrdering_ BaseOrdering;
58
61
63 typedef typename BaseOrdering::Traits Traits;
64
66 typedef typename BaseOrdering::ContainerAllocationTag ContainerAllocationTag;
67
69 typedef typename BaseOrdering::CacheTag CacheTag;
70
72 static const bool has_dynamic_ordering_children = TargetOrdering::has_dynamic_ordering_children;
73
75 static const bool consume_tree_index = TargetOrdering::consume_tree_index;
76
77
79
92 explicit SubOrdering(std::shared_ptr<const BaseOrdering> base_ordering, TreePath tree_path)
93 : NodeT(base_ordering->child(tree_path))
94 , _base_ordering(base_ordering)
95 {
96 update();
97 }
98
99 explicit SubOrdering(std::shared_ptr<const BaseOrdering> base_ordering)
100 : SubOrdering(base_ordering, TreePath())
101 {}
102
104 void update()
105 {}
106
107
108 template<typename ItIn, typename ItOut>
109 void map_lfs_indices(ItIn begin, const ItIn end, ItOut out) const
110 {
111 // Do the mapping up to the root ordering.
112 // Avoid spelling out the type of ItIn here (it has to be a DOFIndexViewIterator),
113 // so we don't need to include lfsindexcache.hh.
114 map_lfs_indices_to_root_space(TreePath(),
115 begin,
116 end,
117 out);
118 }
119
120
121 private:
122
123
125 template<typename TP, typename ItIn, typename ItOut>
126 void map_lfs_indices_in_ancestor(TP tp, ItIn& begin, ItIn& end, ItOut out) const
127 {
129
130 // This logic needs to be replicated from the IndexCache visitor, as we bypass
131 // the tree-visiting algorithm and work our way up the tree all by ourselves.
132 // Don't consume the first entry in the tree path to the parent before it has
133 // been used!
134 if (!std::is_same<TreePath,TP>::value && Ordering::consume_tree_index)
135 {
136 begin.restore_back();
137 end.restore_back();
138 }
139
140 // Call the single-level mapping step of our ancestor ordering.
141 TypeTree::child(baseOrdering(),tp).map_lfs_indices(begin,end,out);
142 }
143
144 // Template recursion for walking up the TreePath to the BaseOrdering
145 template<typename TP, typename ItIn, typename ItOut>
146 void map_lfs_indices_to_root_space(TP tp, ItIn begin, ItIn end, ItOut out) const
147 {
148 if constexpr (tp.size() == 0)
149 {
150 // End of template recursion for walking up the TreePath to the BaseOrdering
151 map_lfs_indices_in_ancestor(tp,begin,end,out);
152 }
153 else
154 {
155 map_lfs_indices_in_ancestor(tp,begin,end,out);
156 // recurse further up to the tree
157 map_lfs_indices_to_root_space(pop_back(tp),begin,end,out);
158 }
159 }
160
161 public:
162
164 typename Traits::ContainerIndex mapIndex(const typename Traits::DOFIndex& di) const
165 {
166 typename Traits::ContainerIndex ci;
167 mapIndex(di,ci);
168 return ci;
169 }
170
172 void mapIndex(typename Traits::DOFIndexView di, typename Traits::ContainerIndex& ci) const
173 {
174 baseOrdering().mapIndex(di,ci);
175 }
176
178 typename Traits::SizeType size() const
179 {
180 return baseOrdering().size();
181 }
182
183 typename Traits::SizeType size(const typename Traits::ContainerIndex& suffix) const
184 {
185 return baseOrdering().size(suffix);
186 }
187
189 typename Traits::SizeType blockCount() const
190 {
191 return baseOrdering().blockCount();
192 }
193
195 typename Traits::SizeType maxLocalSize() const
196 {
197 return targetOrdering().maxLocalSize();
198 }
199
201 bool contains(typename Traits::SizeType codim) const
202 {
203 return targetOrdering().contains(codim);
204 }
205
207 bool fixedSize(typename Traits::SizeType codim) const
208 {
209 return targetOrdering().fixedSize(codim);
210 }
211
214 {
215 return *_base_ordering;
216 }
217
220 {
221 return this->proxiedNode();
222 }
223
224 private:
225
226 std::shared_ptr<const BaseOrdering> _base_ordering;
227
228 };
229
231
232 } // namespace PDELab
233} // namespace Dune
234
235#endif // DUNE_PDELAB_ORDERING_SUBORDERING_HH
A view on a subtree of a multi-component ordering.
Definition: subordering.hh:50
BaseOrdering_ BaseOrdering
The type of the BaseOrdering for which to represent a SubOrdering view.
Definition: subordering.hh:57
SubOrdering(std::shared_ptr< const BaseOrdering > base_ordering, TreePath tree_path)
Constructs a SubOrdering for base_ordering.
Definition: subordering.hh:92
const BaseOrdering & baseOrdering() const
Returns the BaseOrdering.
Definition: subordering.hh:213
bool fixedSize(typename Traits::SizeType codim) const
Returns whether the TargetOrdering is of fixed size for entities of codimension codim.
Definition: subordering.hh:207
BaseOrdering::Traits Traits
Forwarded Ordering traits from BaseOrdering.
Definition: subordering.hh:63
static const bool consume_tree_index
Forwarded ordering property from TargetOrdering, required by PDELab internals.
Definition: subordering.hh:75
bool contains(typename Traits::SizeType codim) const
Returns whether the TargetOrdering has DOFs attached to entities of codimension codim.
Definition: subordering.hh:201
BaseOrdering::CacheTag CacheTag
Forwarded tag from BaseOrdering, required by PDELab internals.
Definition: subordering.hh:69
Traits::SizeType maxLocalSize() const
Returns the maximum per-entity size of the TargetOrdering.
Definition: subordering.hh:195
Traits::ContainerIndex mapIndex(const typename Traits::DOFIndex &di) const
Maps di from the DOFIndex subtree to the ContainerIndex in the BaseOrdering.
Definition: subordering.hh:164
BaseOrdering::ContainerAllocationTag ContainerAllocationTag
Forwarded tag from BaseOrdering, required by PDELab internals.
Definition: subordering.hh:66
const TargetOrdering & targetOrdering() const
Returns the TargetOrdering.
Definition: subordering.hh:219
Traits::SizeType size() const
Returns the size of the BaseOrdering.
Definition: subordering.hh:178
TypeTree::ChildForTreePath< BaseOrdering, TreePath > TargetOrdering
The target ordering that makes up the root of this SubOrdering view.
Definition: subordering.hh:60
static const bool has_dynamic_ordering_children
Forwarded ordering property from TargetOrdering, required by PDELab internals.
Definition: subordering.hh:72
void update()
Updates this SubOrdering.
Definition: subordering.hh:104
void mapIndex(typename Traits::DOFIndexView di, typename Traits::ContainerIndex &ci) const
Maps di from the DOFIndex subtree to the ContainerIndex in the BaseOrdering - inplace version.
Definition: subordering.hh:172
Traits::SizeType blockCount() const
Returns the block count of the BaseOrdering.
Definition: subordering.hh:189
Base class for nodes acting as a proxy for an existing node.
Definition: proxynode.hh:255
std::enable_if< enabled, const TypeTree::ChildForTreePath< BaseOrdering_, TreePath > & >::type proxiedNode()
Returns the proxied node.
Definition: proxynode.hh:306
constexpr auto pop_back(const HybridTreePath< T... > &tp)
Removes last index on a HybridTreePath.
Definition: treepath.hh:539
ImplementationDefined child(Node &&node, Indices... indices)
Extracts the child of a node given by a sequence of compile-time and run-time indices.
Definition: childextraction.hh:127
typename impl::_ChildForTreePath< Node, TreePath >::type ChildForTreePath
Template alias for the type of a child node given by a TreePath or a HybridTreePath type.
Definition: childextraction.hh:251
Dune namespace.
Definition: alignedallocator.hh:13
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 2, 23:03, 2025)