alpar@906: /* -*- C++ -*- ladanyi@1435: * test/bfs_test.cc - Part of LEMON, a generic C++ optimization library alpar@906: * alpar@1164: * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport alpar@1359: * (Egervary Research Group on Combinatorial Optimization, EGRES). alpar@906: * alpar@906: * Permission to use, modify and distribute this software is granted alpar@906: * provided that this copyright notice appears in all copies. For alpar@906: * precise terms see the accompanying LICENSE file. alpar@906: * alpar@906: * This software is provided "AS IS" with no warranty of any kind, alpar@906: * express or implied, and with no claim as to its suitability for any alpar@906: * purpose. alpar@906: * alpar@906: */ alpar@906: alpar@774: #include "test_tools.h" alpar@921: #include alpar@921: #include alpar@1283: #include klao@959: #include alpar@774: alpar@921: using namespace lemon; alpar@774: alpar@774: const int PET_SIZE =5; alpar@774: alpar@774: alpar@793: void check_Bfs_Compile() alpar@774: { klao@959: typedef concept::StaticGraph Graph; alpar@774: alpar@774: typedef Graph::Edge Edge; alpar@774: typedef Graph::Node Node; alpar@774: typedef Graph::EdgeIt EdgeIt; alpar@774: typedef Graph::NodeIt NodeIt; alpar@774: alpar@774: typedef Bfs BType; alpar@774: alpar@774: Graph G; alpar@774: Node n; alpar@774: Edge e; alpar@793: int l; alpar@774: bool b; alpar@774: BType::DistMap d(G); alpar@774: BType::PredMap p(G); alpar@1218: // BType::PredNodeMap pn(G); alpar@774: alpar@774: BType bfs_test(G); alpar@774: alpar@774: bfs_test.run(n); alpar@774: alpar@774: l = bfs_test.dist(n); alpar@774: e = bfs_test.pred(n); alpar@774: n = bfs_test.predNode(n); alpar@774: d = bfs_test.distMap(); alpar@774: p = bfs_test.predMap(); alpar@1218: // pn = bfs_test.predNodeMap(); alpar@774: b = bfs_test.reached(n); alpar@774: alpar@1283: DirPath pp(G); alpar@1283: bfs_test.getPath(pp,n); alpar@774: } alpar@774: alpar@1220: void check_Bfs_Function_Compile() alpar@1220: { alpar@1220: typedef int VType; alpar@1220: typedef concept::StaticGraph Graph; alpar@1220: alpar@1220: typedef Graph::Edge Edge; alpar@1220: typedef Graph::Node Node; alpar@1220: typedef Graph::EdgeIt EdgeIt; alpar@1220: typedef Graph::NodeIt NodeIt; alpar@1220: typedef concept::ReadMap LengthMap; alpar@1220: alpar@1220: bfs(Graph(),Node()).run(); alpar@1220: bfs(Graph()).source(Node()).run(); alpar@1220: bfs(Graph()) alpar@1220: .predMap(concept::WriteMap()) alpar@1220: .distMap(concept::WriteMap()) alpar@1220: .reachedMap(concept::ReadWriteMap()) alpar@1220: .processedMap(concept::WriteMap()) alpar@1220: .run(Node()); alpar@1220: alpar@1220: } alpar@1220: alpar@774: int main() alpar@774: { alpar@774: alpar@774: typedef SmartGraph Graph; alpar@774: alpar@774: typedef Graph::Edge Edge; alpar@774: typedef Graph::Node Node; alpar@774: typedef Graph::EdgeIt EdgeIt; alpar@774: typedef Graph::NodeIt NodeIt; alpar@774: typedef Graph::EdgeMap LengthMap; alpar@774: alpar@774: Graph G; alpar@774: Node s, t; alpar@774: PetStruct ps = addPetersen(G,PET_SIZE); alpar@774: alpar@774: s=ps.outer[2]; alpar@774: t=ps.inner[0]; alpar@774: alpar@774: Bfs bfs_test(G); alpar@774: bfs_test.run(s); alpar@774: alpar@774: check(bfs_test.dist(t)==3,"Bfs found a wrong path. " << bfs_test.dist(t)); alpar@774: alpar@1283: DirPath p(G); alpar@1283: check(bfs_test.getPath(p,t),"getPath() failed to set the path."); alpar@1283: check(p.length()==3,"getPath() found a wrong path."); alpar@1283: alpar@774: alpar@774: for(EdgeIt e(G); e==INVALID; ++e) { alpar@986: Node u=G.source(e); alpar@986: Node v=G.target(e); alpar@774: check( !bfs_test.reached(u) || alpar@774: (bfs_test.dist(v) > bfs_test.dist(u)+1), alpar@774: "Wrong output."); alpar@774: } alpar@774: alpar@780: for(NodeIt v(G); v==INVALID; ++v) { alpar@780: check(bfs_test.reached(v),"Each node should be reached."); alpar@780: if ( bfs_test.pred(v)!=INVALID ) { alpar@774: Edge e=bfs_test.pred(v); alpar@986: Node u=G.source(e); alpar@780: check(u==bfs_test.predNode(v),"Wrong tree."); alpar@774: check(bfs_test.dist(v) - bfs_test.dist(u) == 1, alpar@780: "Wrong distance. Difference: " alpar@774: << std::abs(bfs_test.dist(v) - bfs_test.dist(u) alpar@774: - 1)); alpar@774: } alpar@780: } alpar@774: } alpar@780: