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