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 <lemon/concepts/digraph.h>
20 #include <lemon/smart_graph.h>
21 #include <lemon/list_graph.h>
22 #include <lemon/graph_utils.h>
23 #include <lemon/dijkstra.h>
24 #include <lemon/path.h>
26 #include "graph_test.h"
27 #include "test_tools.h"
29 using namespace lemon;
31 void checkDijkstraCompile()
34 typedef concepts::Digraph Digraph;
35 typedef concepts::ReadMap<Digraph::Arc,VType> LengthMap;
36 typedef Dijkstra<Digraph, LengthMap> DType;
45 // DType::PredNodeMap pn(G);
48 DType dijkstra_test(G,length);
52 l = dijkstra_test.dist(n);
53 e = dijkstra_test.predArc(n);
54 n = dijkstra_test.predNode(n);
55 d = dijkstra_test.distMap();
56 p = dijkstra_test.predMap();
57 // pn = dijkstra_test.predNodeMap();
58 b = dijkstra_test.reached(n);
60 Path<Digraph> pp = dijkstra_test.path(n);
63 void checkDijkstraFunctionCompile()
66 typedef concepts::Digraph Digraph;
67 typedef Digraph::Arc Arc;
68 typedef Digraph::Node Node;
69 typedef concepts::ReadMap<Digraph::Arc,VType> LengthMap;
72 dijkstra(g,LengthMap(),Node()).run();
73 dijkstra(g,LengthMap()).source(Node()).run();
74 dijkstra(g,LengthMap())
75 .predMap(concepts::WriteMap<Node,Arc>())
76 .distMap(concepts::WriteMap<Node,VType>())
80 template <class Digraph>
81 void checkDijkstra() {
82 TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
83 typedef typename Digraph::template ArcMap<int> LengthMap;
88 PetStruct<Digraph> ps = addPetersen(G, 5);
90 for(int i=0;i<5;i++) {
91 length[ps.outcir[i]]=4;
92 length[ps.incir[i]]=1;
93 length[ps.chords[i]]=10;
98 Dijkstra<Digraph, LengthMap>
99 dijkstra_test(G, length);
100 dijkstra_test.run(s);
102 check(dijkstra_test.dist(t)==13,"Dijkstra found a wrong path.");
104 Path<Digraph> p = dijkstra_test.path(t);
105 check(p.length()==4,"getPath() found a wrong path.");
106 check(checkPath(G, p),"path() found a wrong path.");
107 check(pathSource(G, p) == s,"path() found a wrong path.");
108 check(pathTarget(G, p) == t,"path() found a wrong path.");
110 for(ArcIt e(G); e!=INVALID; ++e) {
113 check( !dijkstra_test.reached(u) || (dijkstra_test.dist(v) - dijkstra_test.dist(u) <= length[e]),
114 "dist(target)-dist(source)-arc_length= " << dijkstra_test.dist(v) - dijkstra_test.dist(u) - length[e]);
117 for(NodeIt v(G); v!=INVALID; ++v){
118 check(dijkstra_test.reached(v),"Each node should be reached.");
119 if ( dijkstra_test.predArc(v)!=INVALID ) {
120 Arc e=dijkstra_test.predArc(v);
122 check(u==dijkstra_test.predNode(v),"Wrong tree.");
123 check(dijkstra_test.dist(v) - dijkstra_test.dist(u) == length[e],
124 "Wrong distance! Difference: " << std::abs(dijkstra_test.dist(v) - dijkstra_test.dist(u) - length[e]));
129 NullMap<Node,Arc> myPredMap;
130 dijkstra(G,length).predMap(myPredMap).run(s);
135 checkDijkstra<ListDigraph>();
136 checkDijkstra<SmartDigraph>();