6#ifndef DUNE_TYPETREE_UTILITY_HH
7#define DUNE_TYPETREE_UTILITY_HH
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>
30 std::shared_ptr<T> convert_arg(
const T& t)
32 return std::make_shared<T>(t);
36 std::shared_ptr<T> convert_arg(T& t)
38 return stackobject_to_shared_ptr(t);
41 template<
typename BaseType,
typename T>
42 T& assertGridViewType(T& t)
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");
52 typename std::enable_if<!std::is_lvalue_reference<T>::value,std::shared_ptr<T> >::type convert_arg(T&& t)
54 return std::make_shared<T>(std::forward<T>(t));
58 namespace Experimental {
68 template<
class BinaryOp,
class Arg>
69 constexpr decltype(
auto)
70 left_fold(
const BinaryOp& binary_op, Arg&& arg)
72 return std::forward<Arg>(arg);
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)
102 binary_op(std::forward<Init>(init), std::forward<Arg0>(arg_0)),
103 std::forward<Args>(args)...);
119 template<
typename Tree,
typename Tag = StartTag>
149 template<
typename Node>
153 static const std::size_t
depth = 1;
163 template<
typename Node>
164 struct TreeInfo<Node,PowerNodeTag>
167 typedef TreeInfo<typename Node::ChildType,NodeTag<typename Node::ChildType>> ChildInfo;
169 static const std::size_t
depth = 1 + ChildInfo::depth;
171 static const std::size_t
nodeCount = 1 + StaticDegree<Node>::value * ChildInfo::nodeCount;
173 static const std::size_t
leafCount = StaticDegree<Node>::value * ChildInfo::leafCount;
182 template<
typename Node, std::
size_t k, std::
size_t n>
183 struct generic_compositenode_children_info
186 typedef generic_compositenode_children_info<Node,k+1,n> NextChild;
189 typedef typename Node::template Child<k>::Type
Child;
190 typedef NodeTag<Child> ChildTag;
191 typedef TreeInfo<Child,ChildTag> ChildInfo;
194 static const std::size_t maxDepth = ChildInfo::depth > NextChild::maxDepth ? ChildInfo::depth : NextChild::maxDepth;
196 static const std::size_t nodeCount = ChildInfo::nodeCount + NextChild::nodeCount;
198 static const std::size_t leafCount = ChildInfo::leafCount + NextChild::leafCount;
203 template<
typename Node, std::
size_t n>
204 struct generic_compositenode_children_info<Node,n,n>
206 static const std::size_t maxDepth = 0;
208 static const std::size_t nodeCount = 0;
210 static const std::size_t leafCount = 0;
217 template<
typename Node>
218 struct GenericCompositeNodeInfo
221 typedef generic_compositenode_children_info<Node,0,StaticDegree<Node>::value> Children;
223 static const std::size_t depth = 1 + Children::maxDepth;
225 static const std::size_t nodeCount = 1 + Children::nodeCount;
227 static const std::size_t leafCount = Children::leafCount;
233 template<
typename Node>
234 struct TreeInfo<Node,CompositeNodeTag>
235 :
public GenericCompositeNodeInfo<Node>
242 using Dune::index_constant;
243 namespace Indices = Dune::Indices;
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