7#ifndef DUNE_FUNCTIONS_FUNCTIONSPACEBASES_NODES_HH
8#define DUNE_FUNCTIONS_FUNCTIONSPACEBASES_NODES_HH
13#include <dune/common/indices.hh>
15#include <dune/typetree/leafnode.hh>
16#include <dune/typetree/powernode.hh>
17#include <dune/typetree/dynamicpowernode.hh>
18#include <dune/typetree/compositenode.hh>
19#include <dune/typetree/traversal.hh>
31 struct BasisNodeSetupHelper
34 template<
class Node,
class size_type>
35 static void setOffset(Node& node,
const size_type offset)
37 node.setOffset(offset);
40 template<
class Node,
class size_type>
41 static void setTreeIndex(Node& node,
const size_type index)
43 node.setTreeIndex(index);
55 friend struct Impl::BasisNodeSetupHelper;
59 using size_type = std::size_t;
67 size_type localIndex(size_type i)
const
73 size_type
size()
const
78 size_type treeIndex()
const
85 size_type offset()
const
90 void setOffset(
const size_type offset)
95 void setSize(
const size_type
size)
100 void setTreeIndex(size_type treeIndex)
102 treeIndex_ = treeIndex;
109 size_type treeIndex_;
114 class LeafBasisNode :
115 public BasisNodeMixin,
116 public TypeTree::LeafNode
121 template<
typename Node,
typename Element>
122 class InnerBasisNodeMixin
123 :
public BasisNodeMixin
127 void bind(
const Element& entity)
129 Node& self = *
static_cast<Node*
>(
this);
130 std::size_t offset = this->offset();
132 bindTree(self.child(i), entity, offset);
133 offset += self.child(i).size();
135 this->setSize(offset - this->offset());
142 template<
typename T, std::
size_t n>
143 class PowerBasisNode :
144 public InnerBasisNodeMixin<PowerBasisNode<T, n>, typename T::Element>,
145 public TypeTree::PowerNode<T,n>
148 using Node = TypeTree::PowerNode<T,n>;
152 using Element =
typename T::Element;
154 PowerBasisNode() =
default;
160 const Element& element()
const
170 class DynamicPowerBasisNode :
171 public InnerBasisNodeMixin<DynamicPowerBasisNode<T>, typename T::Element>,
172 public TypeTree::DynamicPowerNode<T>
175 using Node = TypeTree::DynamicPowerNode<T>;
179 using Element =
typename T::Element;
181 DynamicPowerBasisNode (std::size_t children)
186 : Node(
std::move(children))
189 const Element& element()
const
191 return this->
child(0).element();
197 template<
typename... T>
198 class CompositeBasisNode :
199 public InnerBasisNodeMixin<CompositeBasisNode<T...>, typename TypeTree::CompositeNode<T...>::template Child<0>::Type::Element>,
200 public TypeTree::CompositeNode<T...>
203 using Node = TypeTree::CompositeNode<T...>;
207 using Element =
typename Node::template Child<0>::Type::Element;
209 CompositeBasisNode() =
default;
215 explicit CompositeBasisNode(
const T&... children) :
219 template<
typename... Children>
220 explicit CompositeBasisNode(
const std::shared_ptr<Children>&... children) :
224 const Element& element()
const
232 template<
typename Tree,
typename Entity>
233 void bindTree(Tree& tree,
const Entity& entity, std::size_t offset = 0)
235 Impl::BasisNodeSetupHelper::setOffset(tree, offset);
239 template<
typename Tree>
240 void initializeTree(Tree& tree, std::size_t treeIndexOffset = 0)
243 Impl::BasisNodeSetupHelper::setTreeIndex(node, treeIndexOffset);
std::tuple< std::shared_ptr< Children >... > NodeStorage
The type used for storing the children.
Definition: compositenode.hh:36
std::vector< ChildStorageType > NodeStorage
The type used for storing the children.
Definition: dynamicpowernode.hh:67
std::array< std::shared_ptr< T >, k > NodeStorage
The type used for storing the children.
Definition: powernode.hh:77
constexpr index_constant< 0 > _0
Compile time index with value 0.
Definition: indices.hh:52
constexpr void forEach(Range &&range, F &&f)
Range based for loop.
Definition: hybridutilities.hh:257
static constexpr IntegralRange< std::decay_t< T > > range(T &&from, U &&to) noexcept
free standing function for setting up a range based for loop over an integer range for (auto i: range...
Definition: rangeutilities.hh:294
constexpr auto treePath(const T &... t)
Constructs a new HybridTreePath from the given indices.
Definition: treepath.hh:323
void forEachNode(Tree &&tree, PreNodeFunc &&preNodeFunc, LeafNodeFunc &&leafNodeFunc, PostNodeFunc &&postNodeFunc)
Traverse tree and visit each node.
Definition: traversal.hh:259
Dune namespace.
Definition: alignedallocator.hh:13
constexpr std::integral_constant< std::size_t, sizeof...(II)> size(std::integer_sequence< T, II... >)
Return the size of the sequence.
Definition: integersequence.hh:75