/* -*- 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>
typedef concepts::Digraph Digraph;
typedef Bfs<Digraph> BType;
// BType::PredNodeMap pn(G);
n = bfs_test.predNode(n);
// pn = bfs_test.predNodeMap();
Path<Digraph> pp = bfs_test.path(n);
void checkBfsFunctionCompile()
typedef concepts::Digraph Digraph;
typedef Digraph::Arc Arc;
typedef Digraph::Node Node;
bfs(g).source(Node()).run();
.predMap(concepts::WriteMap<Node,Arc>())
.distMap(concepts::WriteMap<Node,VType>())
.reachedMap(concepts::ReadWriteMap<Node,bool>())
.processedMap(concepts::WriteMap<Node,bool>())
TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
PetStruct<Digraph> ps = addPetersen(G, 5);
Bfs<Digraph> bfs_test(G);
check(bfs_test.dist(t)==3,"Bfs found a wrong path." << bfs_test.dist(t));
Path<Digraph> p = bfs_test.path(t);
check(p.length()==3,"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(ArcIt e(G); e!=INVALID; ++e) {
check( !bfs_test.reached(u) ||
(bfs_test.dist(v) <= bfs_test.dist(u)+1),
for(NodeIt v(G); v!=INVALID; ++v) {
check(bfs_test.reached(v),"Each node should be reached.");
if ( bfs_test.predArc(v)!=INVALID ) {
Arc e=bfs_test.predArc(v);
check(u==bfs_test.predNode(v),"Wrong tree.");
check(bfs_test.dist(v) - bfs_test.dist(u) == 1,
"Wrong distance. Difference: "
<< std::abs(bfs_test.dist(v) - bfs_test.dist(u)
checkBfs<SmartDigraph>();