3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2008
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
19 #include "test_tools.h"
20 #include <lemon/smart_graph.h>
21 #include <lemon/dfs.h>
22 #include <lemon/path.h>
23 #include <lemon/concepts/graph.h>
25 using namespace lemon;
27 const int PET_SIZE =5;
30 void check_Dfs_SmartGraph_Compile()
32 typedef concepts::Graph Graph;
34 typedef Graph::Edge Edge;
35 typedef Graph::Node Node;
36 typedef Graph::EdgeIt EdgeIt;
37 typedef Graph::NodeIt NodeIt;
39 typedef Dfs<Graph> DType;
48 // DType::PredNodeMap pn(G);
55 e = dfs_test.predEdge(n);
56 n = dfs_test.predNode(n);
57 d = dfs_test.distMap();
58 p = dfs_test.predMap();
59 // pn = dfs_test.predNodeMap();
60 b = dfs_test.reached(n);
62 Path<Graph> pp = dfs_test.path(n);
66 void check_Dfs_Function_Compile()
69 typedef concepts::Graph Graph;
71 typedef Graph::Edge Edge;
72 typedef Graph::Node Node;
73 typedef Graph::EdgeIt EdgeIt;
74 typedef Graph::NodeIt NodeIt;
75 typedef concepts::ReadMap<Edge,VType> LengthMap;
79 dfs(g).source(Node()).run();
81 .predMap(concepts::WriteMap<Node,Edge>())
82 .distMap(concepts::WriteMap<Node,VType>())
83 .reachedMap(concepts::ReadWriteMap<Node,bool>())
84 .processedMap(concepts::WriteMap<Node,bool>())
92 typedef SmartGraph Graph;
94 typedef Graph::Edge Edge;
95 typedef Graph::Node Node;
96 typedef Graph::EdgeIt EdgeIt;
97 typedef Graph::NodeIt NodeIt;
98 typedef Graph::EdgeMap<int> LengthMap;
102 PetStruct<Graph> ps = addPetersen(G,PET_SIZE);
107 Dfs<Graph> dfs_test(G);
110 Path<Graph> p = dfs_test.path(t);
111 check(p.length()==dfs_test.dist(t),"path() found a wrong path.");
112 check(checkPath(G, p),"path() found a wrong path.");
113 check(pathSource(G, p) == s,"path() found a wrong path.");
114 check(pathTarget(G, p) == t,"path() found a wrong path.");
116 for(NodeIt v(G); v!=INVALID; ++v) {
117 check(dfs_test.reached(v),"Each node should be reached.");
118 if ( dfs_test.predEdge(v)!=INVALID ) {
119 Edge e=dfs_test.predEdge(v);
121 check(u==dfs_test.predNode(v),"Wrong tree.");
122 check(dfs_test.dist(v) - dfs_test.dist(u) == 1,
123 "Wrong distance. (" << dfs_test.dist(u) << "->"
124 <<dfs_test.dist(v) << ')');