alpar@906: /* -*- C++ -*- alpar@906: * alpar@1956: * This file is a part of LEMON, a generic C++ optimization library alpar@1956: * alpar@2553: * Copyright (C) 2003-2008 alpar@1956: * 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 alpar@2260: #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: { alpar@2260: typedef concepts::Graph 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); deba@1763: e = bfs_test.predEdge(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: deba@2335: Path pp = bfs_test.path(n); alpar@774: } alpar@774: alpar@1220: void check_Bfs_Function_Compile() alpar@1220: { alpar@1220: typedef int VType; alpar@2260: typedef concepts::Graph 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@2260: typedef concepts::ReadMap LengthMap; alpar@1220: alpar@2135: Graph g; alpar@2135: bfs(g,Node()).run(); alpar@2135: bfs(g).source(Node()).run(); alpar@2135: bfs(g) alpar@2260: .predMap(concepts::WriteMap()) alpar@2260: .distMap(concepts::WriteMap()) alpar@2260: .reachedMap(concepts::ReadWriteMap()) alpar@2260: .processedMap(concepts::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: deba@2335: Path p = bfs_test.path(t); alpar@1283: check(p.length()==3,"getPath() found a wrong path."); deba@2335: check(checkPath(G, p),"path() found a wrong path."); deba@2335: check(pathSource(G, p) == s,"path() found a wrong path."); deba@2335: check(pathTarget(G, p) == t,"path() 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."); deba@1763: if ( bfs_test.predEdge(v)!=INVALID ) { deba@1763: Edge e=bfs_test.predEdge(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: