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/bfs.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_Bfs_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 Bfs<Graph> BType;
48 // BType::PredNodeMap pn(G);
55 e = bfs_test.predEdge(n);
56 n = bfs_test.predNode(n);
57 d = bfs_test.distMap();
58 p = bfs_test.predMap();
59 // pn = bfs_test.predNodeMap();
60 b = bfs_test.reached(n);
63 bfs_test.getPath(pp,n);
66 void check_Bfs_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 bfs(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 Bfs<Graph> bfs_test(G);
110 check(bfs_test.dist(t)==3,"Bfs found a wrong path. " << bfs_test.dist(t));
113 check(bfs_test.getPath(p,t),"getPath() failed to set the path.");
114 check(p.length()==3,"getPath() found a wrong path.");
117 for(EdgeIt e(G); e==INVALID; ++e) {
120 check( !bfs_test.reached(u) ||
121 (bfs_test.dist(v) > bfs_test.dist(u)+1),
125 for(NodeIt v(G); v==INVALID; ++v) {
126 check(bfs_test.reached(v),"Each node should be reached.");
127 if ( bfs_test.predEdge(v)!=INVALID ) {
128 Edge e=bfs_test.predEdge(v);
130 check(u==bfs_test.predNode(v),"Wrong tree.");
131 check(bfs_test.dist(v) - bfs_test.dist(u) == 1,
132 "Wrong distance. Difference: "
133 << std::abs(bfs_test.dist(v) - bfs_test.dist(u)