dune-functions 2.8.0
Loading...
Searching...
No Matches
defaultnodetorangemap.hh
Go to the documentation of this file.
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3#ifndef DUNE_FUNCTIONS_FUNCTIONSPACEBASES_DEFAULTNODETORANGEMAP_HH
4#define DUNE_FUNCTIONS_FUNCTIONSPACEBASES_DEFAULTNODETORANGEMAP_HH
5
6
8
10
13
14
15namespace Dune {
16namespace Functions {
17
18
19
37template<class Tree>
39{
40
41 // A simple visitor for computing lexicographic
42 // subtree indices. To identify a leaf node
43 // we use its treeIndex() which is unique
44 // wrt the whole tree and store the computed
45 // index in a vector indexed by the tree indices.
46 struct Visitor
49 {
51 indices_(indices),
52 counter_(0)
53 {}
54
55 template<typename Node, typename TreePath>
56 void leaf(Node& node, TreePath treePath)
57 {
58 if (indices_.size() < node.treeIndex()+1)
59 indices_.resize(node.treeIndex()+1);
60 indices_[node.treeIndex()] = counter_;
61 ++counter_;
62 }
63
66 };
67
78 DefaultNodeToRangeMap(const Tree& tree)
79 {
81 }
82
83 template<class Node, class TreePath, class Range,
85 decltype(auto) operator()(const Node& node, const TreePath& treePath, Range&& y) const
86 {
87 return y[indices_[node.treeIndex()]];
88 }
89
90 template<class Node, class TreePath, class Range,
92 decltype(auto) operator()(const Node& node, const TreePath& treePath, Range&& y) const
93 {
94 return std::forward<Range>(y);
95 }
96
98};
99
100
101
102template<class Tree>
107
108
109
110template<class Basis, class TreePath>
111auto makeDefaultNodeToRangeMap(const Basis& basis, TreePath&& treePath)
112 -> decltype(makeDefaultNodeToRangeMap(TypeTree::child(basis.localView().tree(),treePath)))
113{
114 auto&& localView = basis.localView();
115 localView.bind(*basis.gridView().template begin<0>());
116 auto&& tree = TypeTree::child(localView.tree(),treePath);
117 return makeDefaultNodeToRangeMap(tree);
118}
119
120
121
122} // namespace Dune::Functions
123} // namespace Dune
124
125
126#endif // DUNE_FUNCTIONS_FUNCTIONSPACEBASES_DEFAULTNODETORANGEMAP_HH
void applyToTree(Tree &&tree, Visitor &&visitor)
ImplementationDefined child(Node &&node, Indices... indices)
DefaultNodeToRangeMap< Tree > makeDefaultNodeToRangeMap(const Tree &tree)
Definition defaultnodetorangemap.hh:103
A simple node to range map using lexicographic ordering.
Definition defaultnodetorangemap.hh:39
std::vector< std::size_t > indices_
Definition defaultnodetorangemap.hh:97
DefaultNodeToRangeMap(const Tree &tree)
Construct DefaultNodeToRangeMap.
Definition defaultnodetorangemap.hh:78
Definition defaultnodetorangemap.hh:49
Visitor(std::vector< std::size_t > &indices)
Definition defaultnodetorangemap.hh:50
void leaf(Node &node, TreePath treePath)
Definition defaultnodetorangemap.hh:56
std::size_t counter_
Definition defaultnodetorangemap.hh:65
std::vector< std::size_t > & indices_
Definition defaultnodetorangemap.hh:64
T resize(T... args)
T size(T... args)