1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2013
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 <lemon/concepts/digraph.h>
20 #include <lemon/smart_graph.h>
21 #include <lemon/list_graph.h>
22 #include <lemon/lgf_reader.h>
23 #include <lemon/bellman_ford.h>
24 #include <lemon/path.h>
26 #include "graph_test.h"
27 #include "test_tools.h"
29 using namespace lemon;
55 void checkBellmanFordCompile()
58 typedef concepts::Digraph Digraph;
59 typedef concepts::ReadMap<Digraph::Arc,Value> LengthMap;
60 typedef BellmanFord<Digraph, LengthMap> BF;
61 typedef Digraph::Node Node;
62 typedef Digraph::Arc Arc;
68 ::lemon::ignore_unused_variable_warning(l);
71 ::lemon::ignore_unused_variable_warning(b);
75 concepts::Path<Digraph> pp;
78 BF bf_test(gr,length);
79 const BF& const_bf_test = bf_test;
86 bf_test.addSource(s, 1);
87 b = bf_test.processNextRound();
88 b = bf_test.processNextWeakRound();
91 bf_test.checkedStart();
92 bf_test.limitedStart(k);
94 l = const_bf_test.dist(t);
95 e = const_bf_test.predArc(t);
96 s = const_bf_test.predNode(t);
97 b = const_bf_test.reached(t);
98 d = const_bf_test.distMap();
99 p = const_bf_test.predMap();
100 pp = const_bf_test.path(t);
101 pp = const_bf_test.negativeCycle();
103 for (BF::ActiveIt it(const_bf_test); it != INVALID; ++it) {}
104 for (auto n: const_bf_test.activeNodes()) { ::lemon::ignore_unused_variable_warning(n); }
105 for (Digraph::Node n: const_bf_test.activeNodes()) {
106 ::lemon::ignore_unused_variable_warning(n);
110 BF::SetPredMap<concepts::ReadWriteMap<Node,Arc> >
111 ::SetDistMap<concepts::ReadWriteMap<Node,Value> >
112 ::SetOperationTraits<BellmanFordDefaultOperationTraits<Value> >
113 ::Create bf_test(gr,length);
115 LengthMap length_map;
116 concepts::ReadWriteMap<Node,Arc> pred_map;
117 concepts::ReadWriteMap<Node,Value> dist_map;
120 .lengthMap(length_map)
128 bf_test.addSource(s);
129 bf_test.addSource(s, 1);
130 b = bf_test.processNextRound();
131 b = bf_test.processNextWeakRound();
134 bf_test.checkedStart();
135 bf_test.limitedStart(k);
138 e = bf_test.predArc(t);
139 s = bf_test.predNode(t);
140 b = bf_test.reached(t);
141 pp = bf_test.path(t);
142 pp = bf_test.negativeCycle();
146 void checkBellmanFordFunctionCompile()
149 typedef concepts::Digraph Digraph;
150 typedef Digraph::Arc Arc;
151 typedef Digraph::Node Node;
152 typedef concepts::ReadMap<Digraph::Arc,Value> LengthMap;
156 ::lemon::ignore_unused_variable_warning(b);
158 bellmanFord(g,LengthMap()).run(Node());
159 b = bellmanFord(g,LengthMap()).run(Node(),Node());
160 bellmanFord(g,LengthMap())
161 .predMap(concepts::ReadWriteMap<Node,Arc>())
162 .distMap(concepts::ReadWriteMap<Node,Value>())
164 b=bellmanFord(g,LengthMap())
165 .predMap(concepts::ReadWriteMap<Node,Arc>())
166 .distMap(concepts::ReadWriteMap<Node,Value>())
167 .path(concepts::Path<Digraph>())
173 template <typename Digraph, typename Value>
174 void checkBellmanFord() {
175 TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
176 typedef typename Digraph::template ArcMap<Value> LengthMap;
180 LengthMap length(gr);
182 std::istringstream input(test_lgf);
183 digraphReader(gr, input).
184 arcMap("length", length).
189 BellmanFord<Digraph, LengthMap>
192 Path<Digraph> p = bf.path(t);
194 check(bf.reached(t) && bf.dist(t) == -1, "Bellman-Ford found a wrong path.");
195 check(p.length() == 3, "path() found a wrong path.");
196 check(checkPath(gr, p), "path() found a wrong path.");
197 check(pathSource(gr, p) == s, "path() found a wrong path.");
198 check(pathTarget(gr, p) == t, "path() found a wrong path.");
200 ListPath<Digraph> path;
202 bool reached = bellmanFord(gr,length).path(path).dist(dist).run(s,t);
204 check(reached && dist == -1, "Bellman-Ford found a wrong path.");
205 check(path.length() == 3, "path() found a wrong path.");
206 check(checkPath(gr, path), "path() found a wrong path.");
207 check(pathSource(gr, path) == s, "path() found a wrong path.");
208 check(pathTarget(gr, path) == t, "path() found a wrong path.");
210 for(ArcIt e(gr); e!=INVALID; ++e) {
213 check(!bf.reached(u) || (bf.dist(v) - bf.dist(u) <= length[e]),
214 "Wrong output. dist(target)-dist(source)-arc_length=" <<
215 bf.dist(v) - bf.dist(u) - length[e]);
218 for(NodeIt v(gr); v!=INVALID; ++v) {
220 check(v==s || bf.predArc(v)!=INVALID, "Wrong tree.");
221 if (bf.predArc(v)!=INVALID ) {
224 check(u==bf.predNode(v),"Wrong tree.");
225 check(bf.dist(v) - bf.dist(u) == length[e],
226 "Wrong distance! Difference: " <<
227 bf.dist(v) - bf.dist(u) - length[e]);
233 void checkBellmanFordNegativeCycle() {
234 DIGRAPH_TYPEDEFS(SmartDigraph);
237 IntArcMap length(gr);
239 Node n1 = gr.addNode();
240 Node n2 = gr.addNode();
241 Node n3 = gr.addNode();
242 Node n4 = gr.addNode();
244 Arc a1 = gr.addArc(n1, n2);
245 Arc a2 = gr.addArc(n2, n2);
251 BellmanFord<SmartDigraph, IntArcMap> bf(gr, length);
253 StaticPath<SmartDigraph> p = bf.negativeCycle();
254 check(p.length() == 1 && p.front() == p.back() && p.front() == a2,
255 "Wrong negative cycle.");
261 BellmanFord<SmartDigraph, IntArcMap> bf(gr, length);
263 check(bf.negativeCycle().empty(),
264 "Negative cycle should not be found.");
267 length[gr.addArc(n1, n3)] = 5;
268 length[gr.addArc(n4, n3)] = 1;
269 length[gr.addArc(n2, n4)] = 2;
270 length[gr.addArc(n3, n2)] = -4;
273 BellmanFord<SmartDigraph, IntArcMap> bf(gr, length);
276 for (int i = 0; i < 4; ++i) {
277 check(bf.negativeCycle().empty(),
278 "Negative cycle should not be found.");
279 bf.processNextRound();
281 StaticPath<SmartDigraph> p = bf.negativeCycle();
282 check(p.length() == 3, "Wrong negative cycle.");
283 check(length[p.nth(0)] + length[p.nth(1)] + length[p.nth(2)] == -1,
284 "Wrong negative cycle.");
289 checkBellmanFord<ListDigraph, int>();
290 checkBellmanFord<SmartDigraph, double>();
291 checkBellmanFordNegativeCycle();