/* -*- mode: C++; indent-tabs-mode: nil; -*-
* 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
#include <lemon/concepts/digraph.h>
#include <lemon/smart_graph.h>
#include <lemon/list_graph.h>
#include <lemon/lgf_reader.h>
typedef concepts::Digraph Digraph;
typedef Dfs<Digraph> DType;
n = dfs_test.predNode(n);
Path<Digraph> pp = dfs_test.path(n);
void checkDfsFunctionCompile()
typedef concepts::Digraph Digraph;
typedef Digraph::Arc Arc;
typedef Digraph::Node Node;
b=dfs(g).run(Node(),Node());
.predMap(concepts::ReadWriteMap<Node,Arc>())
.distMap(concepts::ReadWriteMap<Node,VType>())
.reachedMap(concepts::ReadWriteMap<Node,bool>())
.processedMap(concepts::WriteMap<Node,bool>())
.predMap(concepts::ReadWriteMap<Node,Arc>())
.distMap(concepts::ReadWriteMap<Node,VType>())
.reachedMap(concepts::ReadWriteMap<Node,bool>())
.processedMap(concepts::WriteMap<Node,bool>())
.path(concepts::Path<Digraph>())
.predMap(concepts::ReadWriteMap<Node,Arc>())
.distMap(concepts::ReadWriteMap<Node,VType>())
.reachedMap(concepts::ReadWriteMap<Node,bool>())
.processedMap(concepts::WriteMap<Node,bool>())
TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
std::istringstream input(test_lgf);
Dfs<Digraph> dfs_test(G);
Path<Digraph> 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) {
if (dfs_test.reached(v)) {
check(v==s || dfs_test.predArc(v)!=INVALID, "Wrong tree.");
if (dfs_test.predArc(v)!=INVALID ) {
Arc e=dfs_test.predArc(v);
check(u==dfs_test.predNode(v),"Wrong tree.");
check(dfs_test.dist(v) - dfs_test.dist(u) == 1,
"Wrong distance. (" << dfs_test.dist(u) << "->"
<< dfs_test.dist(v) << ")");
NullMap<Node,Arc> myPredMap;
dfs(G).predMap(myPredMap).run(s);
checkDfs<SmartDigraph>();