COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/dijkstra.h @ 1694:6d81e6f7a88d

Last change on this file since 1694:6d81e6f7a88d was 1694:6d81e6f7a88d, checked in by Balazs Dezso, 19 years ago

Fixing naming conventions
Temporarly bugfix with named-parameters
Removing dead codes

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