A bit better msg.
2 * src/lemon/dijkstra.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Combinatorial Optimization Research Group, EGRES).
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
17 #ifndef LEMON_DIJKSTRA_H
18 #define LEMON_DIJKSTRA_H
22 ///\brief Dijkstra algorithm.
24 #include <lemon/list_graph.h>
25 #include <lemon/bin_heap.h>
26 #include <lemon/invalid.h>
27 #include <lemon/error.h>
28 #include <lemon/maps.h>
33 /// \addtogroup flowalgs
36 ///Default traits class of Dijkstra class.
38 ///Default traits class of Dijkstra class.
39 ///\param GR Graph type.
40 ///\param LM Type of length map.
41 template<class GR, class LM>
42 struct DijkstraDefaultTraits
44 ///The graph type the algorithm runs on.
46 ///The type of the map that stores the edge lengths.
48 ///The type of the map that stores the edge lengths.
49 ///It must meet the \ref concept::ReadMap "ReadMap" concept.
51 //The type of the length of the edges.
52 typedef typename LM::Value Value;
53 ///The heap type used by Dijkstra algorithm.
55 ///The heap type used by Dijkstra algorithm.
59 typedef BinHeap<typename Graph::Node,
61 typename GR::template NodeMap<int>,
62 std::less<Value> > Heap;
64 ///\brief The type of the map that stores the last
65 ///edges of the shortest paths.
67 ///The type of the map that stores the last
68 ///edges of the shortest paths.
69 ///It must meet the \ref concept::WriteMap "WriteMap" concept.
71 typedef typename Graph::template NodeMap<typename GR::Edge> PredMap;
72 ///Instantiates a PredMap.
74 ///This function instantiates a \ref PredMap.
75 ///\param G is the graph, to which we would like to define the PredMap.
76 ///\todo The graph alone may be insufficient for the initialization
77 static PredMap *createPredMap(const GR &G)
79 return new PredMap(G);
81 ///\brief The type of the map that stores the last but one
82 ///nodes of the shortest paths.
84 ///The type of the map that stores the last but one
85 ///nodes of the shortest paths.
86 ///It must meet the \ref concept::WriteMap "WriteMap" concept.
88 typedef NullMap<typename Graph::Node,typename Graph::Node> PredNodeMap;
89 ///Instantiates a PredNodeMap.
91 ///This function instantiates a \ref PredNodeMap.
92 ///\param G is the graph, to which we would like to define the \ref PredNodeMap
93 static PredNodeMap *createPredNodeMap(const GR &G)
95 return new PredNodeMap();
98 ///The type of the map that stores whether a nodes is reached.
100 ///The type of the map that stores whether a nodes is reached.
101 ///It must meet the \ref concept::WriteMap "WriteMap" concept.
102 ///By default it is a NullMap.
103 ///\todo If it is set to a real map, Dijkstra::reached() should read this.
104 ///\todo named parameter to set this type, function to read and write.
105 typedef NullMap<typename Graph::Node,bool> ReachedMap;
106 ///Instantiates a ReachedMap.
108 ///This function instantiates a \ref ReachedMap.
109 ///\param G is the graph, to which we would like to define the \ref ReachedMap
110 static ReachedMap *createReachedMap(const GR &G)
112 return new ReachedMap();
114 ///The type of the map that stores the dists of the nodes.
116 ///The type of the map that stores the dists of the nodes.
117 ///It must meet the \ref concept::WriteMap "WriteMap" concept.
119 typedef typename Graph::template NodeMap<typename LM::Value> DistMap;
120 ///Instantiates a DistMap.
122 ///This function instantiates a \ref DistMap.
123 ///\param G is the graph, to which we would like to define the \ref DistMap
124 static DistMap *createDistMap(const GR &G)
126 return new DistMap(G);
130 ///%Dijkstra algorithm class.
132 ///This class provides an efficient implementation of %Dijkstra algorithm.
133 ///The edge lengths are passed to the algorithm using a
134 ///\ref concept::ReadMap "ReadMap",
135 ///so it is easy to change it to any kind of length.
137 ///The type of the length is determined by the
138 ///\ref concept::ReadMap::Value "Value" of the length map.
140 ///It is also possible to change the underlying priority heap.
142 ///\param GR The graph type the algorithm runs on. The default value is
143 ///\ref ListGraph. The value of GR is not used directly by Dijkstra, it
144 ///is only passed to \ref DijkstraDefaultTraits.
145 ///\param LM This read-only
148 ///lengths of the edges. It is read once for each edge, so the map
149 ///may involve in relatively time consuming process to compute the edge
150 ///length if it is necessary. The default map type is
151 ///\ref concept::StaticGraph::EdgeMap "Graph::EdgeMap<int>".
152 ///The value of LM is not used directly by Dijkstra, it
153 ///is only passed to \ref DijkstraDefaultTraits.
154 ///\param TR Traits class to set various data types used by the algorithm.
155 ///The default traits class is
156 ///\ref DijkstraDefaultTraits "DijkstraDefaultTraits<GR,LM>".
157 ///See \ref DijkstraDefaultTraits for the documentation of
158 ///a Dijkstra traits class.
160 ///\author Jacint Szabo and Alpar Juttner
161 ///\todo A compare object would be nice.
164 template <typename GR,
168 template <typename GR=ListGraph,
169 typename LM=typename GR::template EdgeMap<int>,
170 typename TR=DijkstraDefaultTraits<GR,LM> >
175 * \brief \ref Exception for uninitialized parameters.
177 * This error represents problems in the initialization
178 * of the parameters of the algorithms.
180 class UninitializedParameter : public lemon::UninitializedParameter {
182 virtual const char* exceptionName() const {
183 return "lemon::Dijsktra::UninitializedParameter";
188 ///The type of the underlying graph.
189 typedef typename TR::Graph Graph;
191 typedef typename Graph::Node Node;
193 typedef typename Graph::NodeIt NodeIt;
195 typedef typename Graph::Edge Edge;
197 typedef typename Graph::OutEdgeIt OutEdgeIt;
199 ///The type of the length of the edges.
200 typedef typename TR::LengthMap::Value Value;
201 ///The type of the map that stores the edge lengths.
202 typedef typename TR::LengthMap LengthMap;
203 ///\brief The type of the map that stores the last
204 ///edges of the shortest paths.
205 typedef typename TR::PredMap PredMap;
206 ///\brief The type of the map that stores the last but one
207 ///nodes of the shortest paths.
208 typedef typename TR::PredNodeMap PredNodeMap;
209 ///The type of the map indicating if a node is reached.
210 typedef typename TR::ReachedMap ReachedMap;
211 ///The type of the map that stores the dists of the nodes.
212 typedef typename TR::DistMap DistMap;
213 ///The heap type used by the dijkstra algorithm.
214 typedef typename TR::Heap Heap;
216 /// Pointer to the underlying graph.
218 /// Pointer to the length map
219 const LengthMap *length;
220 ///Pointer to the map of predecessors edges.
222 ///Indicates if \ref _pred is locally allocated (\c true) or not.
224 ///Pointer to the map of predecessors nodes.
225 PredNodeMap *_predNode;
226 ///Indicates if \ref _predNode is locally allocated (\c true) or not.
228 ///Pointer to the map of distances.
230 ///Indicates if \ref _dist is locally allocated (\c true) or not.
232 ///Pointer to the map of reached status of the nodes.
233 ReachedMap *_reached;
234 ///Indicates if \ref _reached is locally allocated (\c true) or not.
237 ///The source node of the last execution.
240 ///Creates the maps if necessary.
242 ///\todo Error if \c G or are \c NULL. What about \c length?
243 ///\todo Better memory allocation (instead of new).
248 _pred = Traits::createPredMap(*G);
251 local_predNode = true;
252 _predNode = Traits::createPredNodeMap(*G);
256 _dist = Traits::createDistMap(*G);
259 local_reached = true;
260 _reached = Traits::createReachedMap(*G);
266 ///\name Named template parameters
271 struct DefPredMapTraits : public Traits {
273 static PredMap *createPredMap(const Graph &G)
275 throw UninitializedParameter();
278 ///\ref named-templ-param "Named parameter" for setting PredMap type
280 ///\ref named-templ-param "Named parameter" for setting PredMap type
283 class DefPredMap : public Dijkstra< Graph,
285 DefPredMapTraits<T> > { };
288 struct DefPredNodeMapTraits : public Traits {
289 typedef T PredNodeMap;
290 static PredNodeMap *createPredNodeMap(const Graph &G)
292 throw UninitializedParameter();
295 ///\ref named-templ-param "Named parameter" for setting PredNodeMap type
297 ///\ref named-templ-param "Named parameter" for setting PredNodeMap type
300 class DefPredNodeMap : public Dijkstra< Graph,
302 DefPredNodeMapTraits<T> > { };
305 struct DefDistMapTraits : public Traits {
307 static DistMap *createDistMap(const Graph &G)
309 throw UninitializedParameter();
312 ///\ref named-templ-param "Named parameter" for setting DistMap type
314 ///\ref named-templ-param "Named parameter" for setting DistMap type
317 class DefDistMap : public Dijkstra< Graph,
319 DefDistMapTraits<T> > { };
322 struct DefReachedMapTraits : public Traits {
323 typedef T ReachedMap;
324 static ReachedMap *createReachedMap(const Graph &G)
326 throw UninitializedParameter();
329 ///\ref named-templ-param "Named parameter" for setting ReachedMap type
331 ///\ref named-templ-param "Named parameter" for setting ReachedMap type
334 class DefReachedMap : public Dijkstra< Graph,
336 DefReachedMapTraits<T> > { };
338 struct DefGraphReachedMapTraits : public Traits {
339 typedef typename Graph::NodeMap<bool> ReachedMap;
340 static ReachedMap *createReachedMap(const Graph &G)
342 return new ReachedMap(G);
345 ///\brief \ref named-templ-param "Named parameter"
346 ///for setting the ReachedMap type to be Graph::NodeMap<bool>.
348 ///\ref named-templ-param "Named parameter"
349 ///for setting the ReachedMap type to be Graph::NodeMap<bool>.
350 ///If you don't set it explicitely, it will be automatically allocated.
352 class DefReachedMapToBeDefaultMap :
353 public Dijkstra< Graph,
355 DefGraphReachedMapTraits> { };
361 typename Graph::template NodeMap<int> _heap_map;
367 ///\param _G the graph the algorithm will run on.
368 ///\param _length the length map used by the algorithm.
369 Dijkstra(const Graph& _G, const LengthMap& _length) :
370 G(&_G), length(&_length),
371 _pred(NULL), local_pred(false),
372 _predNode(NULL), local_predNode(false),
373 _dist(NULL), local_dist(false),
374 _reached(NULL), local_reached(false),
375 _heap_map(*G,-1),_heap(_heap_map)
381 if(local_pred) delete _pred;
382 if(local_predNode) delete _predNode;
383 if(local_dist) delete _dist;
384 if(local_reached) delete _reached;
387 ///Sets the length map.
389 ///Sets the length map.
390 ///\return <tt> (*this) </tt>
391 Dijkstra &lengthMap(const LengthMap &m)
397 ///Sets the map storing the predecessor edges.
399 ///Sets the map storing the predecessor edges.
400 ///If you don't use this function before calling \ref run(),
401 ///it will allocate one. The destuctor deallocates this
402 ///automatically allocated map, of course.
403 ///\return <tt> (*this) </tt>
404 Dijkstra &predMap(PredMap &m)
414 ///Sets the map storing the predecessor nodes.
416 ///Sets the map storing the predecessor nodes.
417 ///If you don't use this function before calling \ref run(),
418 ///it will allocate one. The destuctor deallocates this
419 ///automatically allocated map, of course.
420 ///\return <tt> (*this) </tt>
421 Dijkstra &predNodeMap(PredNodeMap &m)
425 local_predNode=false;
431 ///Sets the map storing the distances calculated by the algorithm.
433 ///Sets the map storing the distances calculated by the algorithm.
434 ///If you don't use this function before calling \ref run(),
435 ///it will allocate one. The destuctor deallocates this
436 ///automatically allocated map, of course.
437 ///\return <tt> (*this) </tt>
438 Dijkstra &distMap(DistMap &m)
449 void finalizeNodeData(Node v,Value dst)
451 _reached->set(v,true);
453 _predNode->set(v,G->source((*_pred)[v]));
457 ///\name Excetution control
458 ///The simplest way to execute the algorithm is to use
461 ///It you need more control on the execution,
462 ///first you must call \ref init(), then you can add several source nodes
463 ///with \ref addSource(). Finally \ref start() will perform the actual path
468 ///Initializes the internal data structures.
470 ///Initializes the internal data structures.
472 ///\todo _heap_map's type could also be in the traits class.
477 for ( NodeIt u(*G) ; u!=INVALID ; ++u ) {
478 _pred->set(u,INVALID);
479 _predNode->set(u,INVALID);
480 ///\todo *_reached is not set to false.
481 _heap_map.set(u,Heap::PRE_HEAP);
485 ///Adds a new source node.
487 ///Adds a new source node the the priority heap.
488 ///It checks if the node has already been added to the heap.
490 ///The optional second parameter is the initial distance of the node.
492 ///\todo Do we really want to check it?
493 void addSource(Node s,Value dst=0)
496 if(_heap.state(s) != Heap::IN_HEAP) _heap.push(s,dst);
502 Value oldvalue=_heap[v];
504 finalizeNodeData(v,oldvalue);
506 for(OutEdgeIt e(*G,v); e!=INVALID; ++e) {
508 switch(_heap.state(w)) {
510 _heap.push(w,oldvalue+(*length)[e]);
512 // _predNode->set(w,v);
515 if ( oldvalue+(*length)[e] < _heap[w] ) {
516 _heap.decrease(w, oldvalue+(*length)[e]);
518 // _predNode->set(w,v);
521 case Heap::POST_HEAP:
527 ///Executes the algorithm.
529 ///Executes the algorithm.
531 ///\pre init() must be called and at least one node should be added
532 ///with addSource() before using this function.
534 ///This method runs the %Dijkstra algorithm from the root node(s)
537 ///shortest path to each node. The algorithm computes
538 ///- The shortest path tree.
539 ///- The distance of each node from the root(s).
543 while ( !_heap.empty() ) processNode();
546 ///Executes the algorithm until \c dest is reached.
548 ///Executes the algorithm until \c dest is reached.
550 ///\pre init() must be called and at least one node should be added
551 ///with addSource() before using this function.
553 ///This method runs the %Dijkstra algorithm from the root node(s)
556 ///shortest path to \c dest. The algorithm computes
557 ///- The shortest path to \c dest.
558 ///- The distance of \c dest from the root(s).
560 void start(Node dest)
562 while ( !_heap.empty() && _heap.top()!=dest ) processNode();
563 if ( _heap.top()==dest ) finalizeNodeData(_heap.top());
566 ///Executes the algorithm until a condition is met.
568 ///Executes the algorithm until a condition is met.
570 ///\pre init() must be called and at least one node should be added
571 ///with addSource() before using this function.
573 ///\param nm must be a bool (or convertible) node map. The algorithm
574 ///will stop when it reaches a node \c v with <tt>nm[v]==true</tt>.
576 void start(const NM &nm)
578 while ( !_heap.empty() && !mn[_heap.top()] ) processNode();
579 if ( !_heap.empty() ) finalizeNodeData(_heap.top());
582 ///Runs %Dijkstra algorithm from node \c s.
584 ///This method runs the %Dijkstra algorithm from a root node \c s
587 ///shortest path to each node. The algorithm computes
588 ///- The shortest path tree.
589 ///- The distance of each node from the root.
591 ///\note d.run(s) is just a shortcut of the following code.
603 ///Finds the shortest path between \c s and \c t.
605 ///Finds the shortest path between \c s and \c t.
607 ///\return The length of the shortest s---t path if there exists one,
609 ///\note Apart from the return value, d.run(s) is
610 ///just a shortcut of the following code.
616 Value run(Node s,Node t) {
620 return (*_pred)[t]==INVALID?0:(*_dist)[t];
625 ///\name Query Functions
626 ///The result of the %Dijkstra algorithm can be obtained using these
628 ///Before the use of these functions,
629 ///either run() or start() must be called.
633 ///The distance of a node from the root.
635 ///Returns the distance of a node from the root.
636 ///\pre \ref run() must be called before using this function.
637 ///\warning If node \c v in unreachable from the root the return value
638 ///of this funcion is undefined.
639 Value dist(Node v) const { return (*_dist)[v]; }
641 ///Returns the 'previous edge' of the shortest path tree.
643 ///For a node \c v it returns the 'previous edge' of the shortest path tree,
644 ///i.e. it returns the last edge of a shortest path from the root to \c
645 ///v. It is \ref INVALID
646 ///if \c v is unreachable from the root or if \c v=s. The
647 ///shortest path tree used here is equal to the shortest path tree used in
648 ///\ref predNode(Node v). \pre \ref run() must be called before using
650 ///\todo predEdge could be a better name.
651 Edge pred(Node v) const { return (*_pred)[v]; }
653 ///Returns the 'previous node' of the shortest path tree.
655 ///For a node \c v it returns the 'previous node' of the shortest path tree,
656 ///i.e. it returns the last but one node from a shortest path from the
657 ///root to \c /v. It is INVALID if \c v is unreachable from the root or if
658 ///\c v=s. The shortest path tree used here is equal to the shortest path
659 ///tree used in \ref pred(Node v). \pre \ref run() must be called before
660 ///using this function.
661 Node predNode(Node v) const { return (*_pred)[v]==INVALID ? INVALID:
662 G->source((*_pred)[v]); }
664 ///Returns a reference to the NodeMap of distances.
666 ///Returns a reference to the NodeMap of distances. \pre \ref run() must
667 ///be called before using this function.
668 const DistMap &distMap() const { return *_dist;}
670 ///Returns a reference to the shortest path tree map.
672 ///Returns a reference to the NodeMap of the edges of the
673 ///shortest path tree.
674 ///\pre \ref run() must be called before using this function.
675 const PredMap &predMap() const { return *_pred;}
677 ///Returns a reference to the map of nodes of shortest paths.
679 ///Returns a reference to the NodeMap of the last but one nodes of the
680 ///shortest path tree.
681 ///\pre \ref run() must be called before using this function.
682 const PredNodeMap &predNodeMap() const { return *_predNode;}
684 ///Checks if a node is reachable from the root.
686 ///Returns \c true if \c v is reachable from the root.
687 ///\warning If the algorithm is started from multiple nodes,
688 ///this function may give false result for the source nodes.
689 ///\pre \ref run() must be called before using this function.
691 bool reached(Node v) { return v==source || (*_pred)[v]!=INVALID; }
696 /// Default traits used by \ref DijkstraWizard
698 /// To make it easier to use Dijkstra algorithm we have created a wizard class.
699 /// This \ref DijkstraWizard class needs default traits, as well as the \ref Dijkstra class.
700 /// The \ref DijkstraWizardBase is a class to be the default traits of the
701 /// \ref DijkstraWizard class.
702 template<class GR,class LM>
703 class DijkstraWizardBase : public DijkstraDefaultTraits<GR,LM>
706 typedef DijkstraDefaultTraits<GR,LM> Base;
708 /// Pointer to the underlying graph.
710 /// Pointer to the length map
712 ///Pointer to the map of predecessors edges.
714 ///Pointer to the map of predecessors nodes.
716 ///Pointer to the map of distances.
718 ///Pointer to the source node.
721 /// Type of the nodes in the graph.
722 typedef typename Base::Graph::Node Node;
727 /// This constructor does not require parameters, therefore it initiates
728 /// all of the attributes to default values (0, INVALID).
729 DijkstraWizardBase() : _g(0), _length(0), _pred(0), _predNode(0),
730 _dist(0), _source(INVALID) {}
734 /// This constructor requires some parameters, listed in the parameters list.
735 /// Others are initiated to 0.
736 /// \param g is the initial value of \ref _g
737 /// \param l is the initial value of \ref _length
738 /// \param s is the initial value of \ref _source
739 DijkstraWizardBase(const GR &g,const LM &l, Node s=INVALID) :
740 _g((void *)&g), _length((void *)&l), _pred(0), _predNode(0),
741 _dist(0), _source((void *)&s) {}
745 /// A class to make easier the usage of Dijkstra algorithm
747 /// This class is created to make it easier to use Dijkstra algorithm.
748 /// It uses the functions and features of the plain \ref Dijkstra,
749 /// but it is much more simple to use it.
751 /// Simplicity means that the way to change the types defined
752 /// in the traits class is based on functions that returns the new class
753 /// and not on templatable built-in classes. When using the plain \ref Dijkstra
754 /// the new class with the modified type comes from the original class by using the ::
755 /// operator. In the case of \ref DijkstraWizard only a function have to be called and it will
756 /// return the needed class.
758 /// It does not have own \ref run method. When its \ref run method is called
759 /// it initiates a plain \ref Dijkstra class, and calls the \ref Dijkstra::run
762 class DijkstraWizard : public TR
766 ///The type of the underlying graph.
767 typedef typename TR::Graph Graph;
769 typedef typename Graph::Node Node;
771 typedef typename Graph::NodeIt NodeIt;
773 typedef typename Graph::Edge Edge;
775 typedef typename Graph::OutEdgeIt OutEdgeIt;
777 ///The type of the map that stores the edge lengths.
778 typedef typename TR::LengthMap LengthMap;
779 ///The type of the length of the edges.
780 typedef typename LengthMap::Value Value;
781 ///\brief The type of the map that stores the last
782 ///edges of the shortest paths.
783 typedef typename TR::PredMap PredMap;
784 ///\brief The type of the map that stores the last but one
785 ///nodes of the shortest paths.
786 typedef typename TR::PredNodeMap PredNodeMap;
787 ///The type of the map that stores the dists of the nodes.
788 typedef typename TR::DistMap DistMap;
790 ///The heap type used by the dijkstra algorithm.
791 typedef typename TR::Heap Heap;
794 DijkstraWizard() : TR() {}
796 /// Constructor that requires parameters.
798 /// Constructor that requires parameters.
799 /// These parameters will be the default values for the traits class.
800 DijkstraWizard(const Graph &g,const LengthMap &l, Node s=INVALID) :
804 DijkstraWizard(const TR &b) : TR(b) {}
808 ///Runs Dijkstra algorithm from a given node.
810 ///Runs Dijkstra algorithm from a given node.
811 ///The node can be given by the \ref source function.
814 if(_source==0) throw UninitializedParameter();
815 Dijkstra<Graph,LengthMap,TR> Dij(*(Graph*)_g,*(LengthMap*)_length);
816 if(_pred) Dij.predMap(*(PredMap*)_pred);
817 if(_predNode) Dij.predNodeMap(*(PredNodeMap*)_predNode);
818 if(_dist) Dij.distMap(*(DistMap*)_dist);
819 Dij.run(*(Node*)_source);
822 ///Runs Dijkstra algorithm from the given node.
824 ///Runs Dijkstra algorithm from the given node.
825 ///\param s is the given source.
833 struct DefPredMapBase : public Base {
835 static PredMap *createPredMap(const Graph &G) { return 0; };
836 DefPredMapBase(const Base &b) : Base(b) {}
839 /// \ref named-templ-param "Named parameter" function for setting PredMap type
841 /// \ref named-templ-param "Named parameter" function for setting PredMap type
844 DijkstraWizard<DefPredMapBase<T> > predMap(const T &t)
847 return DijkstraWizard<DefPredMapBase<T> >(*this);
852 struct DefPredNodeMapBase : public Base {
853 typedef T PredNodeMap;
854 static PredNodeMap *createPredNodeMap(const Graph &G) { return 0; };
855 DefPredNodeMapBase(const Base &b) : Base(b) {}
858 /// \ref named-templ-param "Named parameter" function for setting PredNodeMap type
860 /// \ref named-templ-param "Named parameter" function for setting PredNodeMap type
863 DijkstraWizard<DefPredNodeMapBase<T> > predNodeMap(const T &t)
865 _predNode=(void *)&t;
866 return DijkstraWizard<DefPredNodeMapBase<T> >(*this);
870 struct DefDistMapBase : public Base {
872 static DistMap *createDistMap(const Graph &G) { return 0; };
873 DefDistMapBase(const Base &b) : Base(b) {}
876 /// \ref named-templ-param "Named parameter" function for setting DistMap type
878 /// \ref named-templ-param "Named parameter" function for setting DistMap type
881 DijkstraWizard<DefDistMapBase<T> > distMap(const T &t)
884 return DijkstraWizard<DefDistMapBase<T> >(*this);
887 /// Sets the source node, from which the Dijkstra algorithm runs.
889 /// Sets the source node, from which the Dijkstra algorithm runs.
890 /// \param s is the source node.
891 DijkstraWizard<TR> &source(Node s)
901 ///\todo Please document...
903 template<class GR, class LM>
904 DijkstraWizard<DijkstraWizardBase<GR,LM> >
905 dijkstra(const GR &g,const LM &l,typename GR::Node s=INVALID)
907 return DijkstraWizard<DijkstraWizardBase<GR,LM> >(g,l,s);
912 } //END OF NAMESPACE LEMON