diff -r dbaa96cc1013 -r 4f754b4cf82b test/dfs_test.cc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/dfs_test.cc Thu Feb 07 21:37:07 2008 +0000 @@ -0,0 +1,130 @@ +/* -*- C++ -*- + * + * This file is a part of LEMON, a generic C++ optimization library + * + * Copyright (C) 2003-2008 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport + * (Egervary Research Group on Combinatorial Optimization, EGRES). + * + * Permission to use, modify and distribute this software is granted + * provided that this copyright notice appears in all copies. For + * precise terms see the accompanying LICENSE file. + * + * This software is provided "AS IS" with no warranty of any kind, + * express or implied, and with no claim as to its suitability for any + * purpose. + * + */ + +#include "test_tools.h" +// #include +#include +#include +#include +#include + +using namespace lemon; + +const int PET_SIZE =5; + + +void check_Dfs_SmartDigraph_Compile() +{ + typedef concepts::Digraph Digraph; + + typedef Digraph::Arc Arc; + typedef Digraph::Node Node; + typedef Digraph::ArcIt ArcIt; + typedef Digraph::NodeIt NodeIt; + + typedef Dfs DType; + + Digraph G; + Node n; + Arc e; + int l; + bool b; + DType::DistMap d(G); + DType::PredMap p(G); + // DType::PredNodeMap pn(G); + + DType dfs_test(G); + + dfs_test.run(n); + + l = dfs_test.dist(n); + e = dfs_test.predArc(n); + n = dfs_test.predNode(n); + d = dfs_test.distMap(); + p = dfs_test.predMap(); + // pn = dfs_test.predNodeMap(); + b = dfs_test.reached(n); + + Path pp = dfs_test.path(n); +} + + +void check_Dfs_Function_Compile() +{ + typedef int VType; + typedef concepts::Digraph Digraph; + + typedef Digraph::Arc Arc; + typedef Digraph::Node Node; + typedef Digraph::ArcIt ArcIt; + typedef Digraph::NodeIt NodeIt; + typedef concepts::ReadMap LengthMap; + + Digraph g; + dfs(g,Node()).run(); + dfs(g).source(Node()).run(); + dfs(g) + .predMap(concepts::WriteMap()) + .distMap(concepts::WriteMap()) + .reachedMap(concepts::ReadWriteMap()) + .processedMap(concepts::WriteMap()) + .run(Node()); + +} + +int main() +{ + + // typedef SmartDigraph Digraph; + typedef ListDigraph Digraph; + + typedef Digraph::Arc Arc; + typedef Digraph::Node Node; + typedef Digraph::ArcIt ArcIt; + typedef Digraph::NodeIt NodeIt; + typedef Digraph::ArcMap LengthMap; + + Digraph G; + Node s, t; + PetStruct ps = addPetersen(G,PET_SIZE); + + s=ps.outer[2]; + t=ps.inner[0]; + + Dfs dfs_test(G); + dfs_test.run(s); + + Path p = dfs_test.path(t); + check(p.length()==dfs_test.dist(t),"path() found a wrong path."); + check(checkPath(G, p),"path() found a wrong path."); + check(pathSource(G, p) == s,"path() found a wrong path."); + check(pathTarget(G, p) == t,"path() found a wrong path."); + + for(NodeIt v(G); v!=INVALID; ++v) { + check(dfs_test.reached(v),"Each node should be reached."); + if ( dfs_test.predArc(v)!=INVALID ) { + Arc e=dfs_test.predArc(v); + Node u=G.source(e); + check(u==dfs_test.predNode(v),"Wrong tree."); + check(dfs_test.dist(v) - dfs_test.dist(u) == 1, + "Wrong distance. (" << dfs_test.dist(u) << "->" + <