Loading [MathJax]/extensions/MathMenu.js

Dune TypeTree (2.10)

utility.hh
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-GPL-2.0-only-with-PDELab-exception
5
6#ifndef DUNE_TYPETREE_UTILITY_HH
7#define DUNE_TYPETREE_UTILITY_HH
8
9#include <memory>
10#include <tuple>
11#include <type_traits>
12#include <utility>
13#include <algorithm>
14
15#include <dune/common/shared_ptr.hh>
16#include <dune/common/indices.hh>
17#include <dune/typetree/nodeinterface.hh>
18#include <dune/typetree/nodetags.hh>
19
20namespace Dune {
21 namespace TypeTree {
22
27#ifndef DOXYGEN
28
29 template<typename T>
30 std::shared_ptr<T> convert_arg(const T& t)
31 {
32 return std::make_shared<T>(t);
33 }
34
35 template<typename T>
36 std::shared_ptr<T> convert_arg(T& t)
37 {
38 return stackobject_to_shared_ptr(t);
39 }
40
41 template<typename BaseType, typename T>
42 T& assertGridViewType(T& t)
43 {
44 static_assert((std::is_same<typename BaseType::Traits::GridViewType,
45 typename T::Traits::GridViewType>::value),
46 "GridViewType must be equal in all components of composite type");
47 return t;
48 }
49
50 // only bind to real rvalues
51 template<typename T>
52 typename std::enable_if<!std::is_lvalue_reference<T>::value,std::shared_ptr<T> >::type convert_arg(T&& t)
53 {
54 return std::make_shared<T>(std::forward<T>(t));
55 }
56
57
58 namespace Experimental {
59
68 template<class BinaryOp, class Arg>
69 constexpr decltype(auto)
70 left_fold(const BinaryOp& binary_op, Arg&& arg)
71 {
72 return std::forward<Arg>(arg);
73 }
74
96 template<class BinaryOp, class Init, class Arg0, class... Args>
97 constexpr decltype(auto)
98 left_fold(const BinaryOp& binary_op, Init&& init, Arg0&& arg_0, Args&&... args)
99 {
100 return left_fold(
101 binary_op,
102 binary_op(std::forward<Init>(init), std::forward<Arg0>(arg_0)),
103 std::forward<Args>(args)...);
104 }
105
106 } // namespace Experimental
107
108
109#endif // DOXYGEN
110
112
119 template<typename Tree, typename Tag = StartTag>
120 struct TreeInfo
121 {
122
123 private:
124 // Start the tree traversal
126
127 public:
128
130 static const std::size_t depth = NodeInfo::depth;
131
133 static const std::size_t nodeCount = NodeInfo::nodeCount;
134
136 static const std::size_t leafCount = NodeInfo::leafCount;
137
138 };
139
140
141#ifndef DOXYGEN
142
143 // ********************************************************************************
144 // TreeInfo specializations for the different node types
145 // ********************************************************************************
146
147
148 // leaf node
149 template<typename Node>
150 struct TreeInfo<Node,LeafNodeTag>
151 {
152
153 static const std::size_t depth = 1;
154
155 static const std::size_t nodeCount = 1;
156
157 static const std::size_t leafCount = 1;
158
159 };
160
161
162 // power node - exploit the fact that all children are identical
163 template<typename Node>
164 struct TreeInfo<Node,PowerNodeTag>
165 {
166
167 typedef TreeInfo<typename Node::ChildType,NodeTag<typename Node::ChildType>> ChildInfo;
168
169 static const std::size_t depth = 1 + ChildInfo::depth;
170
171 static const std::size_t nodeCount = 1 + StaticDegree<Node>::value * ChildInfo::nodeCount;
172
173 static const std::size_t leafCount = StaticDegree<Node>::value * ChildInfo::leafCount;
174
175 };
176
177
178 namespace {
179
180 // TMP for iterating over the children of a composite node
181 // identical for both composite node implementations
182 template<typename Node, std::size_t k, std::size_t n>
183 struct generic_compositenode_children_info
184 {
185
186 typedef generic_compositenode_children_info<Node,k+1,n> NextChild;
187
188 // extract child info
189 typedef typename Node::template Child<k>::Type Child;
190 typedef NodeTag<Child> ChildTag;
191 typedef TreeInfo<Child,ChildTag> ChildInfo;
192
193 // combine information of current child with info about following children
194 static const std::size_t maxDepth = ChildInfo::depth > NextChild::maxDepth ? ChildInfo::depth : NextChild::maxDepth;
195
196 static const std::size_t nodeCount = ChildInfo::nodeCount + NextChild::nodeCount;
197
198 static const std::size_t leafCount = ChildInfo::leafCount + NextChild::leafCount;
199
200 };
201
202 // End of recursion
203 template<typename Node, std::size_t n>
204 struct generic_compositenode_children_info<Node,n,n>
205 {
206 static const std::size_t maxDepth = 0;
207
208 static const std::size_t nodeCount = 0;
209
210 static const std::size_t leafCount = 0;
211 };
212
213 } // anonymous namespace
214
215
216 // Struct for building information about composite node
217 template<typename Node>
218 struct GenericCompositeNodeInfo
219 {
220
221 typedef generic_compositenode_children_info<Node,0,StaticDegree<Node>::value> Children;
222
223 static const std::size_t depth = 1 + Children::maxDepth;
224
225 static const std::size_t nodeCount = 1 + Children::nodeCount;
226
227 static const std::size_t leafCount = Children::leafCount;
228
229 };
230
231
232 // CompositeNode: delegate to GenericCompositeNodeInfo
233 template<typename Node>
234 struct TreeInfo<Node,CompositeNodeTag>
235 : public GenericCompositeNodeInfo<Node>
236 {};
237
238
239#endif // DOXYGEN
240
241
242 using Dune::index_constant;
243 namespace Indices = Dune::Indices;
244
246
247 } // namespace TypeTree
248} //namespace Dune
249
250#endif // DUNE_TYPETREE_UTILITY_HH
typename impl::_Child< Node, indices... >::type Child
Template alias for the type of a child node given by a list of child indices.
Definition: childextraction.hh:225
Tag designating a leaf node.
Definition: nodetags.hh:18
Struct for obtaining some basic structural information about a TypeTree.
Definition: utility.hh:121
static const std::size_t leafCount
The number of leaf nodes in the TypeTree.
Definition: utility.hh:136
static const std::size_t depth
The depth of the TypeTree.
Definition: utility.hh:130
static const std::size_t nodeCount
The total number of nodes in the TypeTree.
Definition: utility.hh:133
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 5, 23:02, 2025)