1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-GPL-2.0-only-with-PDELab-exception
#include <config.h>
#include <dune/common/test/testsuite.hh>
#include <dune/typetree/leafnode.hh>
#include <dune/typetree/powernode.hh>
#include <dune/typetree/compositenode.hh>
#include <dune/typetree/traversal.hh>
template<class P>
class SimpleLeafNode :
public Dune::TypeTree::LeafNode
{
using Base = Dune::TypeTree::LeafNode;
public:
using Payload = P;
SimpleLeafNode(const Payload& payload) :
payload_(payload)
{}
SimpleLeafNode(Payload&& payload) :
payload_(std::move(payload))
{}
const Payload& value() const
{ return payload_;}
Payload& value()
{ return payload_;}
private:
Payload payload_;
};
template<class P, class C, std::size_t n>
class SimplePowerNode:
public Dune::TypeTree::PowerNode<C,n>
{
using Base = Dune::TypeTree::PowerNode<C,n>;
public:
using Payload = P;
template<class... CC>
SimplePowerNode(const Payload& payload, CC&&... cc) :
Base(std::forward<CC>(cc)...),
payload_(payload)
{}
template<class... CC>
SimplePowerNode(Payload&& payload, CC&&... cc) :
Base(std::forward<CC>(cc)...),
payload_(std::move(payload))
{}
const Payload& value() const
{ return payload_;}
Payload& value()
{ return payload_;}
private:
Payload payload_;
};
template<class P, class... C>
class SimpleCompositeNode:
public Dune::TypeTree::CompositeNode<C...>
{
using Base = Dune::TypeTree::CompositeNode<C...>;
public:
using Payload = P;
template<class... CC>
SimpleCompositeNode(const Payload& payload, CC&&... cc) :
Base(std::forward<CC>(cc)...),
payload_(payload)
{}
template<class... CC>
SimpleCompositeNode(Payload&& payload, CC&&... cc) :
Base(std::forward<CC>(cc)...),
payload_(std::move(payload))
{}
const Payload& value() const
{ return payload_;}
Payload& value()
{ return payload_;}
private:
Payload payload_;
};
template<class P>
auto leafNode(P&& p)
{
return SimpleLeafNode<std::decay_t<P>>(std::forward<P>(p));
}
template<class P, class... C>
auto compositeNode(P&& p, C&&... c)
{
return SimpleCompositeNode<std::decay_t<P>, std::decay_t<C>...>(std::forward<P>(p), std::forward<C>(c)...);
}
template<class P, class C0, class... C>
auto powerNode(P&& p, C0&& c0, C&&... c)
{
return SimplePowerNode<std::decay_t<P>, std::decay_t<C0>, sizeof...(C)+1>(std::forward<P>(p), std::forward<C0>(c0), std::forward<C>(c)...);
}
template<class PreOp = Dune::TypeTree::NoOp, class PostOp = Dune::TypeTree::NoOp, class LeafOp = Dune::TypeTree::NoOp>
struct GenericVisitor
: Dune::TypeTree::TreeVisitor
, Dune::TypeTree::DynamicTraversal
{
GenericVisitor(PreOp const& preOp = {}, LeafOp const& leafOp = {}, PostOp const& postOp = {})
: preOp_(preOp)
, leafOp_(leafOp)
, postOp_(postOp)
{}
template<class Node, class TreePath>
void pre(Node&& node, TreePath tp) const { preOp_(node, tp); }
template<class Node, class TreePath>
void leaf(Node&& node, TreePath tp) const { leafOp_(node, tp); }
template<class Node, class TreePath>
void post(Node&& node, TreePath tp) const { postOp_(node, tp); }
private:
PreOp preOp_;
LeafOp leafOp_;
PostOp postOp_;
};
int main()
{
Dune::TestSuite test("tree traversal check");
using Payload = std::size_t;
auto tree = compositeNode(
Payload(0),
powerNode(
Payload(0),
leafNode(Payload(0)),
leafNode(Payload(0)),
leafNode(Payload(0))
),
leafNode(Payload(0)));
{
std::size_t all = 0;
forEachNode(tree, [&](auto&& node, auto&& path) {
++all;
});
test.check(all==6)
<< "Counting all nodes with forEachNode failed. Result is " << all << " but should be " << 6;
}
{
std::size_t all = 0;
auto countNode = [&](auto&& node, auto&& path) {
++all;
};
auto nop = [&](auto&& node, auto&& path) {};
forEachNode(tree, countNode, countNode, nop);
test.check(all==6)
<< "Counting all nodes with forEachNode failed. Result is " << all << " but should be " << 6;
}
{
std::size_t all = 0;
auto countNode = [&](auto&& node, auto&& path) {
++all;
};
auto nop = [&](auto&& node, auto&& path) {};
forEachNode(tree, nop, countNode, countNode);
test.check(all==6)
<< "Counting all nodes with forEachNode failed. Result is " << all << " but should be " << 6;
}
{
std::size_t all = 0;
auto countNode = [&](auto&& node, auto&& path) {
++all;
};
auto nop = [&](auto&& node, auto&& path) {};
forEachNode(tree, nop, countNode, nop);
test.check(all==4)
<< "Counting all nodes with forEachNode failed. Result is " << all << " but should be " << 4;
}
{
std::size_t all = 0;
auto countNode = [&](auto&& node, auto&& path) {
++all;
};
forEachNode(tree, countNode, countNode, countNode);
test.check(all==8)
<< "Counting all nodes with forEachNode failed. Result is " << all << " but should be " << 8;
}
{
std::size_t inner = 0;
std::size_t leaf = 0;
applyToTree(tree, GenericVisitor{
[&](auto&& node, auto&& path) {
++inner;
}, [&](auto&& node, auto&& path) {
++leaf;
}});
test.check(inner==2)
<< "Counting inner nodes with forEachNode failed. Result is " << inner << " but should be " << 2;
test.check(leaf==4)
<< "Counting leaf nodes with forEachNode failed. Result is " << leaf << " but should be " << 4;
}
{
std::size_t leaf = 0;
forEachLeafNode(tree, [&](auto&& node, auto&& path) {
++leaf;
});
test.check(leaf==4)
<< "Counting leaf nodes with forEachLeafNode failed. Result is " << leaf << " but should be " << 4;
}
{
auto countVisit = [] (auto&& node, auto&& path) {
++(node.value());
};
applyToTree(tree, GenericVisitor{countVisit, countVisit, countVisit});
std::size_t visits=0;
forEachNode(tree, [&](auto&& node, auto&& path) {
visits += node.value();
});
test.check(visits==8)
<< "Counting all node visitations failed. Result is " << visits << " but should be " << 8;
}
return test.exit();
}
|