Turn off 32 bit only tests, cont'd.
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
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);
67 dijkstra_test.getPath(pp,n);
70 void check_Dijkstra_Function_Compile()
73 typedef concepts::Graph Graph;
75 typedef Graph::Edge Edge;
76 typedef Graph::Node Node;
77 typedef Graph::EdgeIt EdgeIt;
78 typedef Graph::NodeIt NodeIt;
79 typedef concepts::ReadMap<Edge,VType> LengthMap;
82 dijkstra(g,LengthMap(),Node()).run();
83 dijkstra(g,LengthMap()).source(Node()).run();
84 dijkstra(g,LengthMap())
85 .predMap(concepts::WriteMap<Node,Edge>())
86 .distMap(concepts::WriteMap<Node,VType>())
95 typedef SmartGraph Graph;
97 typedef Graph::Edge Edge;
98 typedef Graph::Node Node;
99 typedef Graph::EdgeIt EdgeIt;
100 typedef Graph::NodeIt NodeIt;
101 typedef Graph::EdgeMap<int> LengthMap;
106 PetStruct<Graph> ps = addPetersen(G,PET_SIZE);
108 for(int i=0;i<PET_SIZE;i++) {
111 cap[ps.chords[i]]=10;
116 Dijkstra<Graph, LengthMap>
117 dijkstra_test(G, cap);
118 dijkstra_test.run(s);
120 check(dijkstra_test.dist(t)==13,"Dijkstra found a wrong path.");
124 check(dijkstra_test.getPath(p,t),"getPath() failed to set the path.");
125 check(p.length()==4,"getPath() found a wrong path.");
128 for(EdgeIt e(G); e!=INVALID; ++e) {
131 check( !dijkstra_test.reached(u) ||
132 (dijkstra_test.dist(v) - dijkstra_test.dist(u) <= cap[e]),
133 "dist(target)-dist(source)- edge_length= "
134 << dijkstra_test.dist(v) - dijkstra_test.dist(u)
138 ///\bug This works only for integer lengths
139 for(NodeIt v(G); v!=INVALID; ++v){
140 check(dijkstra_test.reached(v),"Each node should be reached.");
141 if ( dijkstra_test.predEdge(v)!=INVALID ) {
142 Edge e=dijkstra_test.predEdge(v);
144 check(u==dijkstra_test.predNode(v),"Wrong tree.");
145 check(dijkstra_test.dist(v) - dijkstra_test.dist(u) == cap[e],
146 "Wrong distance! Difference: "
147 << std::abs(dijkstra_test.dist(v) - dijkstra_test.dist(u)
154 NullMap<Node,Edge> myPredMap;
155 dijkstra(G,cap).predMap(myPredMap).run(s);