/* -*- 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>
#include <lemon/dijkstra.h>
#include <lemon/bin_heap.h>
void checkDijkstraCompile()
typedef concepts::Digraph Digraph;
typedef concepts::ReadMap<Digraph::Arc,VType> LengthMap;
typedef Dijkstra<Digraph, LengthMap> DType;
typedef Digraph::Node Node;
typedef Digraph::Arc Arc;
DType dijkstra_test(G,length);
l = dijkstra_test.dist(t);
e = dijkstra_test.predArc(t);
s = dijkstra_test.predNode(t);
b = dijkstra_test.reached(t);
d = dijkstra_test.distMap();
p = dijkstra_test.predMap();
pp = dijkstra_test.path(t);
::SetPredMap<concepts::ReadWriteMap<Node,Arc> >
::SetDistMap<concepts::ReadWriteMap<Node,VType> >
::SetProcessedMap<concepts::WriteMap<Node,bool> >
::SetStandardProcessedMap
::SetOperationTraits<DijkstraDefaultOperationTraits<VType> >
::SetHeap<BinHeap<VType, concepts::ReadWriteMap<Node,int> > >
::SetStandardHeap<BinHeap<VType, concepts::ReadWriteMap<Node,int> > >
::Create dijkstra_test(G,length);
l = dijkstra_test.dist(t);
e = dijkstra_test.predArc(t);
s = dijkstra_test.predNode(t);
b = dijkstra_test.reached(t);
pp = dijkstra_test.path(t);
void checkDijkstraFunctionCompile()
typedef concepts::Digraph Digraph;
typedef Digraph::Arc Arc;
typedef Digraph::Node Node;
typedef concepts::ReadMap<Digraph::Arc,VType> LengthMap;
dijkstra(g,LengthMap()).run(Node());
b=dijkstra(g,LengthMap()).run(Node(),Node());
.predMap(concepts::ReadWriteMap<Node,Arc>())
.distMap(concepts::ReadWriteMap<Node,VType>())
.processedMap(concepts::WriteMap<Node,bool>())
b=dijkstra(g,LengthMap())
.predMap(concepts::ReadWriteMap<Node,Arc>())
.distMap(concepts::ReadWriteMap<Node,VType>())
.processedMap(concepts::WriteMap<Node,bool>())
.path(concepts::Path<Digraph>())
TEMPLATE_DIGRAPH_TYPEDEFS(Digraph);
typedef typename Digraph::template ArcMap<int> LengthMap;
std::istringstream input(test_lgf);
arcMap("length", length).
Dijkstra<Digraph, LengthMap>
dijkstra_test(G, length);
check(dijkstra_test.dist(t)==3,"Dijkstra found a wrong path.");
Path<Digraph> p = dijkstra_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( !dijkstra_test.reached(u) ||
(dijkstra_test.dist(v) - dijkstra_test.dist(u) <= length[e]),
"Wrong output. dist(target)-dist(source)-arc_length=" <<
dijkstra_test.dist(v) - dijkstra_test.dist(u) - length[e]);
for(NodeIt v(G); v!=INVALID; ++v) {
if (dijkstra_test.reached(v)) {
check(v==s || dijkstra_test.predArc(v)!=INVALID, "Wrong tree.");
if (dijkstra_test.predArc(v)!=INVALID ) {
Arc e=dijkstra_test.predArc(v);
check(u==dijkstra_test.predNode(v),"Wrong tree.");
check(dijkstra_test.dist(v) - dijkstra_test.dist(u) == length[e],
"Wrong distance! Difference: " <<
std::abs(dijkstra_test.dist(v)-dijkstra_test.dist(u)-length[e]));
NullMap<Node,Arc> myPredMap;
dijkstra(G,length).predMap(myPredMap).run(s);
checkDijkstra<ListDigraph>();
checkDijkstra<SmartDigraph>();