lemon/dijkstra.h
author alpar
Tue, 06 Feb 2007 19:09:17 +0000
changeset 2354 3609c77b77be
parent 2335 27aa03cd3121
child 2358 119e406b477f
permissions -rw-r--r--
Doc improvements
     1 /* -*- C++ -*-
     2  *
     3  * This file is a part of LEMON, a generic C++ optimization library
     4  *
     5  * Copyright (C) 2003-2006
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     8  *
     9  * Permission to use, modify and distribute this software is granted
    10  * provided that this copyright notice appears in all copies. For
    11  * precise terms see the accompanying LICENSE file.
    12  *
    13  * This software is provided "AS IS" with no warranty of any kind,
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    16  *
    17  */
    18 
    19 #ifndef LEMON_DIJKSTRA_H
    20 #define LEMON_DIJKSTRA_H
    21 
    22 ///\ingroup flowalgs
    23 ///\file
    24 ///\brief Dijkstra algorithm.
    25 ///
    26 ///\todo dijkstraZero() solution should be revised.
    27 
    28 #include <lemon/list_graph.h>
    29 #include <lemon/bin_heap.h>
    30 #include <lemon/bits/path_dump.h>
    31 #include <lemon/bits/invalid.h>
    32 #include <lemon/error.h>
    33 #include <lemon/maps.h>
    34 
    35 
    36 namespace lemon {
    37 
    38   template<class T> T dijkstraZero() {return 0;}
    39   
    40   ///Default traits class of Dijkstra class.
    41 
    42   ///Default traits class of Dijkstra class.
    43   ///\param GR Graph type.
    44   ///\param LM Type of length map.
    45   template<class GR, class LM>
    46   struct DijkstraDefaultTraits
    47   {
    48     ///The graph type the algorithm runs on. 
    49     typedef GR Graph;
    50     ///The type of the map that stores the edge lengths.
    51 
    52     ///The type of the map that stores the edge lengths.
    53     ///It must meet the \ref concepts::ReadMap "ReadMap" concept.
    54     typedef LM LengthMap;
    55     //The type of the length of the edges.
    56     typedef typename LM::Value Value;
    57     /// The cross reference type used by heap.
    58 
    59     /// The cross reference type used by heap.
    60     /// Usually it is \c Graph::NodeMap<int>.
    61     typedef typename Graph::template NodeMap<int> HeapCrossRef;
    62     ///Instantiates a HeapCrossRef.
    63 
    64     ///This function instantiates a \ref HeapCrossRef. 
    65     /// \param G is the graph, to which we would like to define the 
    66     /// HeapCrossRef.
    67     static HeapCrossRef *createHeapCrossRef(const GR &G) 
    68     {
    69       return new HeapCrossRef(G);
    70     }
    71     
    72     ///The heap type used by Dijkstra algorithm.
    73 
    74     ///The heap type used by Dijkstra algorithm.
    75     ///
    76     ///\sa BinHeap
    77     ///\sa Dijkstra
    78     typedef BinHeap<typename LM::Value, HeapCrossRef, std::less<Value> > Heap;
    79 
    80     static Heap *createHeap(HeapCrossRef& R) 
    81     {
    82       return new Heap(R);
    83     }
    84 
    85     ///\brief The type of the map that stores the last
    86     ///edges of the shortest paths.
    87     /// 
    88     ///The type of the map that stores the last
    89     ///edges of the shortest paths.
    90     ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    91     ///
    92     typedef typename Graph::template NodeMap<typename GR::Edge> PredMap;
    93     ///Instantiates a PredMap.
    94  
    95     ///This function instantiates a \ref PredMap. 
    96     ///\param G is the graph, to which we would like to define the PredMap.
    97     ///\todo The graph alone may be insufficient for the initialization
    98     static PredMap *createPredMap(const GR &G) 
    99     {
   100       return new PredMap(G);
   101     }
   102 
   103     ///The type of the map that stores whether a nodes is processed.
   104  
   105     ///The type of the map that stores whether a nodes is processed.
   106     ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
   107     ///By default it is a NullMap.
   108     ///\todo If it is set to a real map,
   109     ///Dijkstra::processed() should read this.
   110     ///\todo named parameter to set this type, function to read and write.
   111     typedef NullMap<typename Graph::Node,bool> ProcessedMap;
   112     ///Instantiates a ProcessedMap.
   113  
   114     ///This function instantiates a \ref ProcessedMap. 
   115     ///\param g is the graph, to which
   116     ///we would like to define the \ref ProcessedMap
   117 #ifdef DOXYGEN
   118     static ProcessedMap *createProcessedMap(const GR &g)
   119 #else
   120     static ProcessedMap *createProcessedMap(const GR &)
   121 #endif
   122     {
   123       return new ProcessedMap();
   124     }
   125     ///The type of the map that stores the dists of the nodes.
   126  
   127     ///The type of the map that stores the dists of the nodes.
   128     ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
   129     ///
   130     typedef typename Graph::template NodeMap<typename LM::Value> DistMap;
   131     ///Instantiates a DistMap.
   132  
   133     ///This function instantiates a \ref DistMap. 
   134     ///\param G is the graph, to which we would like to define the \ref DistMap
   135     static DistMap *createDistMap(const GR &G)
   136     {
   137       return new DistMap(G);
   138     }
   139   };
   140   
   141   ///%Dijkstra algorithm class.
   142   
   143   /// \ingroup flowalgs
   144   ///This class provides an efficient implementation of %Dijkstra algorithm.
   145   ///The edge lengths are passed to the algorithm using a
   146   ///\ref concepts::ReadMap "ReadMap",
   147   ///so it is easy to change it to any kind of length.
   148   ///
   149   ///The type of the length is determined by the
   150   ///\ref concepts::ReadMap::Value "Value" of the length map.
   151   ///
   152   ///It is also possible to change the underlying priority heap.
   153   ///
   154   ///\param GR The graph type the algorithm runs on. The default value
   155   ///is \ref ListGraph. The value of GR is not used directly by
   156   ///Dijkstra, it is only passed to \ref DijkstraDefaultTraits.
   157   ///\param LM This read-only EdgeMap determines the lengths of the
   158   ///edges. It is read once for each edge, so the map may involve in
   159   ///relatively time consuming process to compute the edge length if
   160   ///it is necessary. The default map type is \ref
   161   ///concepts::Graph::EdgeMap "Graph::EdgeMap<int>".  The value
   162   ///of LM is not used directly by Dijkstra, it is only passed to \ref
   163   ///DijkstraDefaultTraits.  \param TR Traits class to set
   164   ///various data types used by the algorithm.  The default traits
   165   ///class is \ref DijkstraDefaultTraits
   166   ///"DijkstraDefaultTraits<GR,LM>".  See \ref
   167   ///DijkstraDefaultTraits for the documentation of a Dijkstra traits
   168   ///class.
   169   ///
   170   ///\author Jacint Szabo and Alpar Juttner
   171 
   172 #ifdef DOXYGEN
   173   template <typename GR,
   174 	    typename LM,
   175 	    typename TR>
   176 #else
   177   template <typename GR=ListGraph,
   178 	    typename LM=typename GR::template EdgeMap<int>,
   179 	    typename TR=DijkstraDefaultTraits<GR,LM> >
   180 #endif
   181   class Dijkstra {
   182   public:
   183     /**
   184      * \brief \ref Exception for uninitialized parameters.
   185      *
   186      * This error represents problems in the initialization
   187      * of the parameters of the algorithms.
   188      */
   189     class UninitializedParameter : public lemon::UninitializedParameter {
   190     public:
   191       virtual const char* what() const throw() {
   192 	return "lemon::Dijkstra::UninitializedParameter";
   193       }
   194     };
   195 
   196     typedef TR Traits;
   197     ///The type of the underlying graph.
   198     typedef typename TR::Graph Graph;
   199     ///\e
   200     typedef typename Graph::Node Node;
   201     ///\e
   202     typedef typename Graph::NodeIt NodeIt;
   203     ///\e
   204     typedef typename Graph::Edge Edge;
   205     ///\e
   206     typedef typename Graph::OutEdgeIt OutEdgeIt;
   207     
   208     ///The type of the length of the edges.
   209     typedef typename TR::LengthMap::Value Value;
   210     ///The type of the map that stores the edge lengths.
   211     typedef typename TR::LengthMap LengthMap;
   212     ///\brief The type of the map that stores the last
   213     ///edges of the shortest paths.
   214     typedef typename TR::PredMap PredMap;
   215     ///The type of the map indicating if a node is processed.
   216     typedef typename TR::ProcessedMap ProcessedMap;
   217     ///The type of the map that stores the dists of the nodes.
   218     typedef typename TR::DistMap DistMap;
   219     ///The cross reference type used for the current heap.
   220     typedef typename TR::HeapCrossRef HeapCrossRef;
   221     ///The heap type used by the dijkstra algorithm.
   222     typedef typename TR::Heap Heap;
   223   private:
   224     /// Pointer to the underlying graph.
   225     const Graph *G;
   226     /// Pointer to the length map
   227     const LengthMap *length;
   228     ///Pointer to the map of predecessors edges.
   229     PredMap *_pred;
   230     ///Indicates if \ref _pred is locally allocated (\c true) or not.
   231     bool local_pred;
   232     ///Pointer to the map of distances.
   233     DistMap *_dist;
   234     ///Indicates if \ref _dist is locally allocated (\c true) or not.
   235     bool local_dist;
   236     ///Pointer to the map of processed status of the nodes.
   237     ProcessedMap *_processed;
   238     ///Indicates if \ref _processed is locally allocated (\c true) or not.
   239     bool local_processed;
   240     ///Pointer to the heap cross references.
   241     HeapCrossRef *_heap_cross_ref;
   242     ///Indicates if \ref _heap_cross_ref is locally allocated (\c true) or not.
   243     bool local_heap_cross_ref;
   244     ///Pointer to the heap.
   245     Heap *_heap;
   246     ///Indicates if \ref _heap is locally allocated (\c true) or not.
   247     bool local_heap;
   248 
   249     ///Creates the maps if necessary.
   250     
   251     ///\todo Better memory allocation (instead of new).
   252     void create_maps() 
   253     {
   254       if(!_pred) {
   255 	local_pred = true;
   256 	_pred = Traits::createPredMap(*G);
   257       }
   258       if(!_dist) {
   259 	local_dist = true;
   260 	_dist = Traits::createDistMap(*G);
   261       }
   262       if(!_processed) {
   263 	local_processed = true;
   264 	_processed = Traits::createProcessedMap(*G);
   265       }
   266       if (!_heap_cross_ref) {
   267 	local_heap_cross_ref = true;
   268 	_heap_cross_ref = Traits::createHeapCrossRef(*G);
   269       }
   270       if (!_heap) {
   271 	local_heap = true;
   272 	_heap = Traits::createHeap(*_heap_cross_ref);
   273       }
   274     }
   275     
   276   public :
   277 
   278     typedef Dijkstra Create;
   279  
   280     ///\name Named template parameters
   281 
   282     ///@{
   283 
   284     template <class T>
   285     struct DefPredMapTraits : public Traits {
   286       typedef T PredMap;
   287       static PredMap *createPredMap(const Graph &)
   288       {
   289 	throw UninitializedParameter();
   290       }
   291     };
   292     ///\ref named-templ-param "Named parameter" for setting PredMap type
   293 
   294     ///\ref named-templ-param "Named parameter" for setting PredMap type
   295     ///
   296     template <class T>
   297     struct DefPredMap 
   298       : public Dijkstra< Graph,	LengthMap, DefPredMapTraits<T> > {
   299       typedef Dijkstra< Graph,	LengthMap, DefPredMapTraits<T> > Create;
   300     };
   301     
   302     template <class T>
   303     struct DefDistMapTraits : public Traits {
   304       typedef T DistMap;
   305       static DistMap *createDistMap(const Graph &)
   306       {
   307 	throw UninitializedParameter();
   308       }
   309     };
   310     ///\ref named-templ-param "Named parameter" for setting DistMap type
   311 
   312     ///\ref named-templ-param "Named parameter" for setting DistMap type
   313     ///
   314     template <class T>
   315     struct DefDistMap 
   316       : public Dijkstra< Graph, LengthMap, DefDistMapTraits<T> > { 
   317       typedef Dijkstra< Graph, LengthMap, DefDistMapTraits<T> > Create;
   318     };
   319     
   320     template <class T>
   321     struct DefProcessedMapTraits : public Traits {
   322       typedef T ProcessedMap;
   323       static ProcessedMap *createProcessedMap(const Graph &G) 
   324       {
   325 	throw UninitializedParameter();
   326       }
   327     };
   328     ///\ref named-templ-param "Named parameter" for setting ProcessedMap type
   329 
   330     ///\ref named-templ-param "Named parameter" for setting ProcessedMap type
   331     ///
   332     template <class T>
   333     struct DefProcessedMap 
   334       : public Dijkstra< Graph,	LengthMap, DefProcessedMapTraits<T> > { 
   335       typedef Dijkstra< Graph,	LengthMap, DefProcessedMapTraits<T> > Create;
   336     };
   337     
   338     struct DefGraphProcessedMapTraits : public Traits {
   339       typedef typename Graph::template NodeMap<bool> ProcessedMap;
   340       static ProcessedMap *createProcessedMap(const Graph &G) 
   341       {
   342 	return new ProcessedMap(G);
   343       }
   344     };
   345     ///\brief \ref named-templ-param "Named parameter"
   346     ///for setting the ProcessedMap type to be Graph::NodeMap<bool>.
   347     ///
   348     ///\ref named-templ-param "Named parameter"
   349     ///for setting the ProcessedMap type to be Graph::NodeMap<bool>.
   350     ///If you don't set it explicitely, it will be automatically allocated.
   351     template <class T>
   352     struct DefProcessedMapToBeDefaultMap 
   353       : public Dijkstra< Graph, LengthMap, DefGraphProcessedMapTraits> {
   354       typedef Dijkstra< Graph, LengthMap, DefGraphProcessedMapTraits> Create;
   355     };
   356 
   357     template <class H, class CR>
   358     struct DefHeapTraits : public Traits {
   359       typedef CR HeapCrossRef;
   360       typedef H Heap;
   361       static HeapCrossRef *createHeapCrossRef(const Graph &) {
   362 	throw UninitializedParameter();
   363       }
   364       static Heap *createHeap(HeapCrossRef &) 
   365       {
   366 	throw UninitializedParameter();
   367       }
   368     };
   369     ///\brief \ref named-templ-param "Named parameter" for setting
   370     ///heap and cross reference type
   371     ///
   372     ///\ref named-templ-param "Named parameter" for setting heap and cross 
   373     ///reference type
   374     ///
   375     template <class H, class CR = typename Graph::template NodeMap<int> >
   376     struct DefHeap
   377       : public Dijkstra< Graph,	LengthMap, DefHeapTraits<H, CR> > { 
   378       typedef Dijkstra< Graph,	LengthMap, DefHeapTraits<H, CR> > Create;
   379     };
   380 
   381     template <class H, class CR>
   382     struct DefStandardHeapTraits : public Traits {
   383       typedef CR HeapCrossRef;
   384       typedef H Heap;
   385       static HeapCrossRef *createHeapCrossRef(const Graph &G) {
   386 	return new HeapCrossRef(G);
   387       }
   388       static Heap *createHeap(HeapCrossRef &R) 
   389       {
   390 	return new Heap(R);
   391       }
   392     };
   393     ///\brief \ref named-templ-param "Named parameter" for setting
   394     ///heap and cross reference type with automatic allocation
   395     ///
   396     ///\ref named-templ-param "Named parameter" for setting heap and cross 
   397     ///reference type. It can allocate the heap and the cross reference 
   398     ///object if the cross reference's constructor waits for the graph as 
   399     ///parameter and the heap's constructor waits for the cross reference.
   400     template <class H, class CR = typename Graph::template NodeMap<int> >
   401     struct DefStandardHeap
   402       : public Dijkstra< Graph,	LengthMap, DefStandardHeapTraits<H, CR> > { 
   403       typedef Dijkstra< Graph,	LengthMap, DefStandardHeapTraits<H, CR> > 
   404       Create;
   405     };
   406     
   407     ///@}
   408 
   409 
   410   protected:
   411 
   412     Dijkstra() {}
   413 
   414   public:      
   415     
   416     ///Constructor.
   417     
   418     ///\param _G the graph the algorithm will run on.
   419     ///\param _length the length map used by the algorithm.
   420     Dijkstra(const Graph& _G, const LengthMap& _length) :
   421       G(&_G), length(&_length),
   422       _pred(NULL), local_pred(false),
   423       _dist(NULL), local_dist(false),
   424       _processed(NULL), local_processed(false),
   425       _heap_cross_ref(NULL), local_heap_cross_ref(false),
   426       _heap(NULL), local_heap(false)
   427     { }
   428     
   429     ///Destructor.
   430     ~Dijkstra() 
   431     {
   432       if(local_pred) delete _pred;
   433       if(local_dist) delete _dist;
   434       if(local_processed) delete _processed;
   435       if(local_heap_cross_ref) delete _heap_cross_ref;
   436       if(local_heap) delete _heap;
   437     }
   438 
   439     ///Sets the length map.
   440 
   441     ///Sets the length map.
   442     ///\return <tt> (*this) </tt>
   443     Dijkstra &lengthMap(const LengthMap &m) 
   444     {
   445       length = &m;
   446       return *this;
   447     }
   448 
   449     ///Sets the map storing the predecessor edges.
   450 
   451     ///Sets the map storing the predecessor edges.
   452     ///If you don't use this function before calling \ref run(),
   453     ///it will allocate one. The destuctor deallocates this
   454     ///automatically allocated map, of course.
   455     ///\return <tt> (*this) </tt>
   456     Dijkstra &predMap(PredMap &m) 
   457     {
   458       if(local_pred) {
   459 	delete _pred;
   460 	local_pred=false;
   461       }
   462       _pred = &m;
   463       return *this;
   464     }
   465 
   466     ///Sets the map storing the distances calculated by the algorithm.
   467 
   468     ///Sets the map storing the distances calculated by the algorithm.
   469     ///If you don't use this function before calling \ref run(),
   470     ///it will allocate one. The destuctor deallocates this
   471     ///automatically allocated map, of course.
   472     ///\return <tt> (*this) </tt>
   473     Dijkstra &distMap(DistMap &m) 
   474     {
   475       if(local_dist) {
   476 	delete _dist;
   477 	local_dist=false;
   478       }
   479       _dist = &m;
   480       return *this;
   481     }
   482 
   483     ///Sets the heap and the cross reference used by algorithm.
   484 
   485     ///Sets the heap and the cross reference used by algorithm.
   486     ///If you don't use this function before calling \ref run(),
   487     ///it will allocate one. The destuctor deallocates this
   488     ///automatically allocated heap and cross reference, of course.
   489     ///\return <tt> (*this) </tt>
   490     Dijkstra &heap(Heap& heap, HeapCrossRef &crossRef)
   491     {
   492       if(local_heap_cross_ref) {
   493 	delete _heap_cross_ref;
   494 	local_heap_cross_ref=false;
   495       }
   496       _heap_cross_ref = &crossRef;
   497       if(local_heap) {
   498 	delete _heap;
   499 	local_heap=false;
   500       }
   501       _heap = &heap;
   502       return *this;
   503     }
   504 
   505   private:
   506     void finalizeNodeData(Node v,Value dst)
   507     {
   508       _processed->set(v,true);
   509       _dist->set(v, dst);
   510     }
   511 
   512   public:
   513 
   514     typedef PredMapPath<Graph, PredMap> Path;
   515 
   516     ///\name Execution control
   517     ///The simplest way to execute the algorithm is to use
   518     ///one of the member functions called \c run(...).
   519     ///\n
   520     ///If you need more control on the execution,
   521     ///first you must call \ref init(), then you can add several source nodes
   522     ///with \ref addSource().
   523     ///Finally \ref start() will perform the actual path
   524     ///computation.
   525 
   526     ///@{
   527 
   528     ///Initializes the internal data structures.
   529 
   530     ///Initializes the internal data structures.
   531     ///
   532     void init()
   533     {
   534       create_maps();
   535       _heap->clear();
   536       for ( NodeIt u(*G) ; u!=INVALID ; ++u ) {
   537 	_pred->set(u,INVALID);
   538 	_processed->set(u,false);
   539 	_heap_cross_ref->set(u,Heap::PRE_HEAP);
   540       }
   541     }
   542     
   543     ///Adds a new source node.
   544 
   545     ///Adds a new source node to the priority heap.
   546     ///
   547     ///The optional second parameter is the initial distance of the node.
   548     ///
   549     ///It checks if the node has already been added to the heap and
   550     ///it is pushed to the heap only if either it was not in the heap
   551     ///or the shortest path found till then is shorter than \c dst.
   552     void addSource(Node s,Value dst=dijkstraZero<Value>())
   553     {
   554       if(_heap->state(s) != Heap::IN_HEAP) {
   555 	_heap->push(s,dst);
   556       } else if((*_heap)[s]<dst) {
   557 	_heap->set(s,dst);
   558 	_pred->set(s,INVALID);
   559       }
   560     }
   561     
   562     ///Processes the next node in the priority heap
   563 
   564     ///Processes the next node in the priority heap.
   565     ///
   566     ///\return The processed node.
   567     ///
   568     ///\warning The priority heap must not be empty!
   569     Node processNextNode()
   570     {
   571       Node v=_heap->top(); 
   572       Value oldvalue=_heap->prio();
   573       _heap->pop();
   574       finalizeNodeData(v,oldvalue);
   575       
   576       for(OutEdgeIt e(*G,v); e!=INVALID; ++e) {
   577 	Node w=G->target(e); 
   578 	switch(_heap->state(w)) {
   579 	case Heap::PRE_HEAP:
   580 	  _heap->push(w,oldvalue+(*length)[e]); 
   581 	  _pred->set(w,e);
   582 	  break;
   583 	case Heap::IN_HEAP:
   584 	  if ( oldvalue+(*length)[e] < (*_heap)[w] ) {
   585 	    _heap->decrease(w, oldvalue+(*length)[e]); 
   586 	    _pred->set(w,e);
   587 	  }
   588 	  break;
   589 	case Heap::POST_HEAP:
   590 	  break;
   591 	}
   592       }
   593       return v;
   594     }
   595 
   596     ///Next node to be processed.
   597     
   598     ///Next node to be processed.
   599     ///
   600     ///\return The next node to be processed or INVALID if the priority heap
   601     /// is empty.
   602     Node nextNode()
   603     { 
   604       return _heap->empty()?_heap->top():INVALID;
   605     }
   606  
   607     ///\brief Returns \c false if there are nodes
   608     ///to be processed in the priority heap
   609     ///
   610     ///Returns \c false if there are nodes
   611     ///to be processed in the priority heap
   612     bool emptyQueue() { return _heap->empty(); }
   613     ///Returns the number of the nodes to be processed in the priority heap
   614 
   615     ///Returns the number of the nodes to be processed in the priority heap
   616     ///
   617     int queueSize() { return _heap->size(); }
   618     
   619     ///Executes the algorithm.
   620 
   621     ///Executes the algorithm.
   622     ///
   623     ///\pre init() must be called and at least one node should be added
   624     ///with addSource() before using this function.
   625     ///
   626     ///This method runs the %Dijkstra algorithm from the root node(s)
   627     ///in order to
   628     ///compute the
   629     ///shortest path to each node. The algorithm computes
   630     ///- The shortest path tree.
   631     ///- The distance of each node from the root(s).
   632     ///
   633     void start()
   634     {
   635       while ( !_heap->empty() ) processNextNode();
   636     }
   637     
   638     ///Executes the algorithm until \c dest is reached.
   639 
   640     ///Executes the algorithm until \c dest is reached.
   641     ///
   642     ///\pre init() must be called and at least one node should be added
   643     ///with addSource() before using this function.
   644     ///
   645     ///This method runs the %Dijkstra algorithm from the root node(s)
   646     ///in order to
   647     ///compute the
   648     ///shortest path to \c dest. The algorithm computes
   649     ///- The shortest path to \c  dest.
   650     ///- The distance of \c dest from the root(s).
   651     ///
   652     void start(Node dest)
   653     {
   654       while ( !_heap->empty() && _heap->top()!=dest ) processNextNode();
   655       if ( !_heap->empty() ) finalizeNodeData(_heap->top(),_heap->prio());
   656     }
   657     
   658     ///Executes the algorithm until a condition is met.
   659 
   660     ///Executes the algorithm until a condition is met.
   661     ///
   662     ///\pre init() must be called and at least one node should be added
   663     ///with addSource() before using this function.
   664     ///
   665     ///\param nm must be a bool (or convertible) node map. The algorithm
   666     ///will stop when it reaches a node \c v with <tt>nm[v]==true</tt>.
   667     template<class NodeBoolMap>
   668     void start(const NodeBoolMap &nm)
   669     {
   670       while ( !_heap->empty() && !nm[_heap->top()] ) processNextNode();
   671       if ( !_heap->empty() ) finalizeNodeData(_heap->top(),_heap->prio());
   672     }
   673     
   674     ///Runs %Dijkstra algorithm from node \c s.
   675     
   676     ///This method runs the %Dijkstra algorithm from a root node \c s
   677     ///in order to
   678     ///compute the
   679     ///shortest path to each node. The algorithm computes
   680     ///- The shortest path tree.
   681     ///- The distance of each node from the root.
   682     ///
   683     ///\note d.run(s) is just a shortcut of the following code.
   684     ///\code
   685     ///  d.init();
   686     ///  d.addSource(s);
   687     ///  d.start();
   688     ///\endcode
   689     void run(Node s) {
   690       init();
   691       addSource(s);
   692       start();
   693     }
   694     
   695     ///Finds the shortest path between \c s and \c t.
   696     
   697     ///Finds the shortest path between \c s and \c t.
   698     ///
   699     ///\return The length of the shortest s---t path if there exists one,
   700     ///0 otherwise.
   701     ///\note Apart from the return value, d.run(s) is
   702     ///just a shortcut of the following code.
   703     ///\code
   704     ///  d.init();
   705     ///  d.addSource(s);
   706     ///  d.start(t);
   707     ///\endcode
   708     Value run(Node s,Node t) {
   709       init();
   710       addSource(s);
   711       start(t);
   712       return (*_pred)[t]==INVALID?dijkstraZero<Value>():(*_dist)[t];
   713     }
   714     
   715     ///@}
   716 
   717     ///\name Query Functions
   718     ///The result of the %Dijkstra algorithm can be obtained using these
   719     ///functions.\n
   720     ///Before the use of these functions,
   721     ///either run() or start() must be called.
   722     
   723     ///@{
   724 
   725     ///Gives back the shortest path.
   726     
   727     ///Gives back the shortest path.
   728     ///\pre The \c t should be reachable from the source.
   729     Path path(Node t) 
   730     {
   731       return Path(*G, *_pred, t);
   732     }
   733 
   734     ///The distance of a node from the root.
   735 
   736     ///Returns the distance of a node from the root.
   737     ///\pre \ref run() must be called before using this function.
   738     ///\warning If node \c v in unreachable from the root the return value
   739     ///of this funcion is undefined.
   740     Value dist(Node v) const { return (*_dist)[v]; }
   741 
   742     ///Returns the 'previous edge' of the shortest path tree.
   743 
   744     ///For a node \c v it returns the 'previous edge' of the shortest path tree,
   745     ///i.e. it returns the last edge of a shortest path from the root to \c
   746     ///v. It is \ref INVALID
   747     ///if \c v is unreachable from the root or if \c v=s. The
   748     ///shortest path tree used here is equal to the shortest path tree used in
   749     ///\ref predNode().  \pre \ref run() must be called before using
   750     ///this function.
   751     Edge predEdge(Node v) const { return (*_pred)[v]; }
   752 
   753     ///Returns the 'previous node' of the shortest path tree.
   754 
   755     ///For a node \c v it returns the 'previous node' of the shortest path tree,
   756     ///i.e. it returns the last but one node from a shortest path from the
   757     ///root to \c /v. It is INVALID if \c v is unreachable from the root or if
   758     ///\c v=s. The shortest path tree used here is equal to the shortest path
   759     ///tree used in \ref predEdge().  \pre \ref run() must be called before
   760     ///using this function.
   761     Node predNode(Node v) const { return (*_pred)[v]==INVALID ? INVALID:
   762 				  G->source((*_pred)[v]); }
   763     
   764     ///Returns a reference to the NodeMap of distances.
   765 
   766     ///Returns a reference to the NodeMap of distances. \pre \ref run() must
   767     ///be called before using this function.
   768     const DistMap &distMap() const { return *_dist;}
   769  
   770     ///Returns a reference to the shortest path tree map.
   771 
   772     ///Returns a reference to the NodeMap of the edges of the
   773     ///shortest path tree.
   774     ///\pre \ref run() must be called before using this function.
   775     const PredMap &predMap() const { return *_pred;}
   776  
   777     ///Checks if a node is reachable from the root.
   778 
   779     ///Returns \c true if \c v is reachable from the root.
   780     ///\warning The source nodes are inditated as unreached.
   781     ///\pre \ref run() must be called before using this function.
   782     ///
   783     bool reached(Node v) { return (*_heap_cross_ref)[v] != Heap::PRE_HEAP; }
   784 
   785     ///Checks if a node is processed.
   786 
   787     ///Returns \c true if \c v is processed, i.e. the shortest
   788     ///path to \c v has already found.
   789     ///\pre \ref run() must be called before using this function.
   790     ///
   791     bool processed(Node v) { return (*_heap_cross_ref)[v] == Heap::POST_HEAP; }
   792     
   793     ///@}
   794   };
   795 
   796 
   797 
   798 
   799  
   800   ///Default traits class of Dijkstra function.
   801 
   802   ///Default traits class of Dijkstra function.
   803   ///\param GR Graph type.
   804   ///\param LM Type of length map.
   805   template<class GR, class LM>
   806   struct DijkstraWizardDefaultTraits
   807   {
   808     ///The graph type the algorithm runs on. 
   809     typedef GR Graph;
   810     ///The type of the map that stores the edge lengths.
   811 
   812     ///The type of the map that stores the edge lengths.
   813     ///It must meet the \ref concepts::ReadMap "ReadMap" concept.
   814     typedef LM LengthMap;
   815     //The type of the length of the edges.
   816     typedef typename LM::Value Value;
   817     ///The heap type used by Dijkstra algorithm.
   818 
   819     /// The cross reference type used by heap.
   820 
   821     /// The cross reference type used by heap.
   822     /// Usually it is \c Graph::NodeMap<int>.
   823     typedef typename Graph::template NodeMap<int> HeapCrossRef;
   824     ///Instantiates a HeapCrossRef.
   825 
   826     ///This function instantiates a \ref HeapCrossRef. 
   827     /// \param G is the graph, to which we would like to define the 
   828     /// HeapCrossRef.
   829     /// \todo The graph alone may be insufficient for the initialization
   830     static HeapCrossRef *createHeapCrossRef(const GR &G) 
   831     {
   832       return new HeapCrossRef(G);
   833     }
   834     
   835     ///The heap type used by Dijkstra algorithm.
   836 
   837     ///The heap type used by Dijkstra algorithm.
   838     ///
   839     ///\sa BinHeap
   840     ///\sa Dijkstra
   841     typedef BinHeap<typename LM::Value, typename GR::template NodeMap<int>,
   842 		    std::less<Value> > Heap;
   843 
   844     static Heap *createHeap(HeapCrossRef& R) 
   845     {
   846       return new Heap(R);
   847     }
   848 
   849     ///\brief The type of the map that stores the last
   850     ///edges of the shortest paths.
   851     /// 
   852     ///The type of the map that stores the last
   853     ///edges of the shortest paths.
   854     ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
   855     ///
   856     typedef NullMap <typename GR::Node,typename GR::Edge> PredMap;
   857     ///Instantiates a PredMap.
   858  
   859     ///This function instantiates a \ref PredMap. 
   860     ///\param g is the graph, to which we would like to define the PredMap.
   861     ///\todo The graph alone may be insufficient for the initialization
   862 #ifdef DOXYGEN
   863     static PredMap *createPredMap(const GR &g) 
   864 #else
   865     static PredMap *createPredMap(const GR &) 
   866 #endif
   867     {
   868       return new PredMap();
   869     }
   870     ///The type of the map that stores whether a nodes is processed.
   871  
   872     ///The type of the map that stores whether a nodes is processed.
   873     ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
   874     ///By default it is a NullMap.
   875     ///\todo If it is set to a real map,
   876     ///Dijkstra::processed() should read this.
   877     ///\todo named parameter to set this type, function to read and write.
   878     typedef NullMap<typename Graph::Node,bool> ProcessedMap;
   879     ///Instantiates a ProcessedMap.
   880  
   881     ///This function instantiates a \ref ProcessedMap. 
   882     ///\param g is the graph, to which
   883     ///we would like to define the \ref ProcessedMap
   884 #ifdef DOXYGEN
   885     static ProcessedMap *createProcessedMap(const GR &g)
   886 #else
   887     static ProcessedMap *createProcessedMap(const GR &)
   888 #endif
   889     {
   890       return new ProcessedMap();
   891     }
   892     ///The type of the map that stores the dists of the nodes.
   893  
   894     ///The type of the map that stores the dists of the nodes.
   895     ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
   896     ///
   897     typedef NullMap<typename Graph::Node,typename LM::Value> DistMap;
   898     ///Instantiates a DistMap.
   899  
   900     ///This function instantiates a \ref DistMap. 
   901     ///\param g is the graph, to which we would like to define the \ref DistMap
   902 #ifdef DOXYGEN
   903     static DistMap *createDistMap(const GR &g)
   904 #else
   905     static DistMap *createDistMap(const GR &)
   906 #endif
   907     {
   908       return new DistMap();
   909     }
   910   };
   911   
   912   /// Default traits used by \ref DijkstraWizard
   913 
   914   /// To make it easier to use Dijkstra algorithm
   915   ///we have created a wizard class.
   916   /// This \ref DijkstraWizard class needs default traits,
   917   ///as well as the \ref Dijkstra class.
   918   /// The \ref DijkstraWizardBase is a class to be the default traits of the
   919   /// \ref DijkstraWizard class.
   920   /// \todo More named parameters are required...
   921   template<class GR,class LM>
   922   class DijkstraWizardBase : public DijkstraWizardDefaultTraits<GR,LM>
   923   {
   924 
   925     typedef DijkstraWizardDefaultTraits<GR,LM> Base;
   926   protected:
   927     /// Type of the nodes in the graph.
   928     typedef typename Base::Graph::Node Node;
   929 
   930     /// Pointer to the underlying graph.
   931     void *_g;
   932     /// Pointer to the length map
   933     void *_length;
   934     ///Pointer to the map of predecessors edges.
   935     void *_pred;
   936     ///Pointer to the map of distances.
   937     void *_dist;
   938     ///Pointer to the source node.
   939     Node _source;
   940 
   941     public:
   942     /// Constructor.
   943     
   944     /// This constructor does not require parameters, therefore it initiates
   945     /// all of the attributes to default values (0, INVALID).
   946     DijkstraWizardBase() : _g(0), _length(0), _pred(0),
   947 			   _dist(0), _source(INVALID) {}
   948 
   949     /// Constructor.
   950     
   951     /// This constructor requires some parameters,
   952     /// listed in the parameters list.
   953     /// Others are initiated to 0.
   954     /// \param g is the initial value of  \ref _g
   955     /// \param l is the initial value of  \ref _length
   956     /// \param s is the initial value of  \ref _source
   957     DijkstraWizardBase(const GR &g,const LM &l, Node s=INVALID) :
   958       _g((void *)&g), _length((void *)&l), _pred(0),
   959       _dist(0), _source(s) {}
   960 
   961   };
   962   
   963   /// A class to make the usage of Dijkstra algorithm easier
   964 
   965   /// This class is created to make it easier to use Dijkstra algorithm.
   966   /// It uses the functions and features of the plain \ref Dijkstra,
   967   /// but it is much simpler to use it.
   968   ///
   969   /// Simplicity means that the way to change the types defined
   970   /// in the traits class is based on functions that returns the new class
   971   /// and not on templatable built-in classes.
   972   /// When using the plain \ref Dijkstra
   973   /// the new class with the modified type comes from
   974   /// the original class by using the ::
   975   /// operator. In the case of \ref DijkstraWizard only
   976   /// a function have to be called and it will
   977   /// return the needed class.
   978   ///
   979   /// It does not have own \ref run method. When its \ref run method is called
   980   /// it initiates a plain \ref Dijkstra class, and calls the \ref 
   981   /// Dijkstra::run method of it.
   982   template<class TR>
   983   class DijkstraWizard : public TR
   984   {
   985     typedef TR Base;
   986 
   987     ///The type of the underlying graph.
   988     typedef typename TR::Graph Graph;
   989     //\e
   990     typedef typename Graph::Node Node;
   991     //\e
   992     typedef typename Graph::NodeIt NodeIt;
   993     //\e
   994     typedef typename Graph::Edge Edge;
   995     //\e
   996     typedef typename Graph::OutEdgeIt OutEdgeIt;
   997     
   998     ///The type of the map that stores the edge lengths.
   999     typedef typename TR::LengthMap LengthMap;
  1000     ///The type of the length of the edges.
  1001     typedef typename LengthMap::Value Value;
  1002     ///\brief The type of the map that stores the last
  1003     ///edges of the shortest paths.
  1004     typedef typename TR::PredMap PredMap;
  1005     ///The type of the map that stores the dists of the nodes.
  1006     typedef typename TR::DistMap DistMap;
  1007     ///The heap type used by the dijkstra algorithm.
  1008     typedef typename TR::Heap Heap;
  1009   public:
  1010     /// Constructor.
  1011     DijkstraWizard() : TR() {}
  1012 
  1013     /// Constructor that requires parameters.
  1014 
  1015     /// Constructor that requires parameters.
  1016     /// These parameters will be the default values for the traits class.
  1017     DijkstraWizard(const Graph &g,const LengthMap &l, Node s=INVALID) :
  1018       TR(g,l,s) {}
  1019 
  1020     ///Copy constructor
  1021     DijkstraWizard(const TR &b) : TR(b) {}
  1022 
  1023     ~DijkstraWizard() {}
  1024 
  1025     ///Runs Dijkstra algorithm from a given node.
  1026     
  1027     ///Runs Dijkstra algorithm from a given node.
  1028     ///The node can be given by the \ref source function.
  1029     void run()
  1030     {
  1031       if(Base::_source==INVALID) throw UninitializedParameter();
  1032       Dijkstra<Graph,LengthMap,TR> 
  1033 	dij(*(Graph*)Base::_g,*(LengthMap*)Base::_length);
  1034       if(Base::_pred) dij.predMap(*(PredMap*)Base::_pred);
  1035       if(Base::_dist) dij.distMap(*(DistMap*)Base::_dist);
  1036       dij.run(Base::_source);
  1037     }
  1038 
  1039     ///Runs Dijkstra algorithm from the given node.
  1040 
  1041     ///Runs Dijkstra algorithm from the given node.
  1042     ///\param s is the given source.
  1043     void run(Node s)
  1044     {
  1045       Base::_source=s;
  1046       run();
  1047     }
  1048 
  1049     template<class T>
  1050     struct DefPredMapBase : public Base {
  1051       typedef T PredMap;
  1052       static PredMap *createPredMap(const Graph &) { return 0; };
  1053       DefPredMapBase(const TR &b) : TR(b) {}
  1054     };
  1055     
  1056     ///\brief \ref named-templ-param "Named parameter"
  1057     ///function for setting PredMap type
  1058     ///
  1059     /// \ref named-templ-param "Named parameter"
  1060     ///function for setting PredMap type
  1061     ///
  1062     template<class T>
  1063     DijkstraWizard<DefPredMapBase<T> > predMap(const T &t) 
  1064     {
  1065       Base::_pred=(void *)&t;
  1066       return DijkstraWizard<DefPredMapBase<T> >(*this);
  1067     }
  1068     
  1069     template<class T>
  1070     struct DefDistMapBase : public Base {
  1071       typedef T DistMap;
  1072       static DistMap *createDistMap(const Graph &) { return 0; };
  1073       DefDistMapBase(const TR &b) : TR(b) {}
  1074     };
  1075     
  1076     ///\brief \ref named-templ-param "Named parameter"
  1077     ///function for setting DistMap type
  1078     ///
  1079     /// \ref named-templ-param "Named parameter"
  1080     ///function for setting DistMap type
  1081     ///
  1082     template<class T>
  1083     DijkstraWizard<DefDistMapBase<T> > distMap(const T &t) 
  1084     {
  1085       Base::_dist=(void *)&t;
  1086       return DijkstraWizard<DefDistMapBase<T> >(*this);
  1087     }
  1088     
  1089     /// Sets the source node, from which the Dijkstra algorithm runs.
  1090 
  1091     /// Sets the source node, from which the Dijkstra algorithm runs.
  1092     /// \param s is the source node.
  1093     DijkstraWizard<TR> &source(Node s) 
  1094     {
  1095       Base::_source=s;
  1096       return *this;
  1097     }
  1098     
  1099   };
  1100   
  1101   ///Function type interface for Dijkstra algorithm.
  1102 
  1103   /// \ingroup flowalgs
  1104   ///Function type interface for Dijkstra algorithm.
  1105   ///
  1106   ///This function also has several
  1107   ///\ref named-templ-func-param "named parameters",
  1108   ///they are declared as the members of class \ref DijkstraWizard.
  1109   ///The following
  1110   ///example shows how to use these parameters.
  1111   ///\code
  1112   ///  dijkstra(g,length,source).predMap(preds).run();
  1113   ///\endcode
  1114   ///\warning Don't forget to put the \ref DijkstraWizard::run() "run()"
  1115   ///to the end of the parameter list.
  1116   ///\sa DijkstraWizard
  1117   ///\sa Dijkstra
  1118   template<class GR, class LM>
  1119   DijkstraWizard<DijkstraWizardBase<GR,LM> >
  1120   dijkstra(const GR &g,const LM &l,typename GR::Node s=INVALID)
  1121   {
  1122     return DijkstraWizard<DijkstraWizardBase<GR,LM> >(g,l,s);
  1123   }
  1124 
  1125 } //END OF NAMESPACE LEMON
  1126 
  1127 #endif