Various improvements in NetworkSimplex.
- Faster variant of "Altering Candidate List" pivot rule using make_heap
instead of partial_sort.
- Doc improvements.
- Removing unecessary inline keywords.
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/dijkstra.h>
22 #include <lemon/path.h>
23 #include <lemon/maps.h>
24 #include <lemon/concepts/graph.h>
25 #include <lemon/concepts/maps.h>
26 using namespace lemon;
28 const int PET_SIZE =5;
31 void check_Dijkstra_BinHeap_Compile()
34 typedef concepts::Graph Graph;
36 typedef Graph::Edge Edge;
37 typedef Graph::Node Node;
38 typedef Graph::EdgeIt EdgeIt;
39 typedef Graph::NodeIt NodeIt;
40 typedef concepts::ReadMap<Edge,VType> LengthMap;
42 typedef Dijkstra<Graph, LengthMap> DType;
51 // DType::PredNodeMap pn(G);
54 DType dijkstra_test(G,cap);
58 l = dijkstra_test.dist(n);
59 e = dijkstra_test.predEdge(n);
60 n = dijkstra_test.predNode(n);
61 d = dijkstra_test.distMap();
62 p = dijkstra_test.predMap();
63 // pn = dijkstra_test.predNodeMap();
64 b = dijkstra_test.reached(n);
66 Path<Graph> pp = dijkstra_test.path(n);
69 void check_Dijkstra_Function_Compile()
72 typedef concepts::Graph Graph;
74 typedef Graph::Edge Edge;
75 typedef Graph::Node Node;
76 typedef Graph::EdgeIt EdgeIt;
77 typedef Graph::NodeIt NodeIt;
78 typedef concepts::ReadMap<Edge,VType> LengthMap;
81 dijkstra(g,LengthMap(),Node()).run();
82 dijkstra(g,LengthMap()).source(Node()).run();
83 dijkstra(g,LengthMap())
84 .predMap(concepts::WriteMap<Node,Edge>())
85 .distMap(concepts::WriteMap<Node,VType>())
94 typedef SmartGraph Graph;
96 typedef Graph::Edge Edge;
97 typedef Graph::Node Node;
98 typedef Graph::EdgeIt EdgeIt;
99 typedef Graph::NodeIt NodeIt;
100 typedef Graph::EdgeMap<int> LengthMap;
105 PetStruct<Graph> ps = addPetersen(G,PET_SIZE);
107 for(int i=0;i<PET_SIZE;i++) {
110 cap[ps.chords[i]]=10;
115 Dijkstra<Graph, LengthMap>
116 dijkstra_test(G, cap);
117 dijkstra_test.run(s);
119 check(dijkstra_test.dist(t)==13,"Dijkstra found a wrong path.");
122 Path<Graph> p = dijkstra_test.path(t);
123 check(p.length()==4,"getPath() found a wrong path.");
124 check(checkPath(G, p),"path() found a wrong path.");
125 check(pathSource(G, p) == s,"path() found a wrong path.");
126 check(pathTarget(G, p) == t,"path() found a wrong path.");
129 for(EdgeIt e(G); e!=INVALID; ++e) {
132 check( !dijkstra_test.reached(u) ||
133 (dijkstra_test.dist(v) - dijkstra_test.dist(u) <= cap[e]),
134 "dist(target)-dist(source)- edge_length= "
135 << dijkstra_test.dist(v) - dijkstra_test.dist(u)
139 ///\bug This works only for integer lengths
140 for(NodeIt v(G); v!=INVALID; ++v){
141 check(dijkstra_test.reached(v),"Each node should be reached.");
142 if ( dijkstra_test.predEdge(v)!=INVALID ) {
143 Edge e=dijkstra_test.predEdge(v);
145 check(u==dijkstra_test.predNode(v),"Wrong tree.");
146 check(dijkstra_test.dist(v) - dijkstra_test.dist(u) == cap[e],
147 "Wrong distance! Difference: "
148 << std::abs(dijkstra_test.dist(v) - dijkstra_test.dist(u)
155 NullMap<Node,Edge> myPredMap;
156 dijkstra(G,cap).predMap(myPredMap).run(s);