lemon/concepts/path.h
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 22 Sep 2008 15:33:23 +0200
changeset 278 931190050520
parent 236 da953e387d31
child 281 e9b4fbe163f5
permissions -rw-r--r--
Improve the function-type interface of bfs, dfs, and dijkstra (ticket #96)
- BfsWizard and DfsWizard have run(s), run(s,t), and run() functions,
DijkstraWizard has run(s) and run(s,t) functions.
- Set NodeMap<T> instead of NullMap as PredMap and DistMap in the default
traits classes for the function-type interface.
- Modify the related test files.
- Doc improvements.
- Bug fix in concepts/path.h.
alpar@209
     1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@96
     2
 *
alpar@209
     3
 * This file is a part of LEMON, a generic C++ optimization library.
alpar@96
     4
 *
alpar@96
     5
 * Copyright (C) 2003-2008
alpar@96
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@96
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@96
     8
 *
alpar@96
     9
 * Permission to use, modify and distribute this software is granted
alpar@96
    10
 * provided that this copyright notice appears in all copies. For
alpar@96
    11
 * precise terms see the accompanying LICENSE file.
alpar@96
    12
 *
alpar@96
    13
 * This software is provided "AS IS" with no warranty of any kind,
alpar@96
    14
 * express or implied, and with no claim as to its suitability for any
alpar@96
    15
 * purpose.
alpar@96
    16
 *
alpar@96
    17
 */
alpar@96
    18
alpar@96
    19
///\ingroup concept
alpar@96
    20
///\file
alpar@96
    21
///\brief Classes for representing paths in digraphs.
alpar@96
    22
///
alpar@96
    23
///\todo Iterators have obsolete style
alpar@96
    24
alpar@96
    25
#ifndef LEMON_CONCEPT_PATH_H
alpar@96
    26
#define LEMON_CONCEPT_PATH_H
alpar@96
    27
deba@220
    28
#include <lemon/core.h>
alpar@96
    29
#include <lemon/concept_check.h>
alpar@96
    30
alpar@96
    31
namespace lemon {
alpar@96
    32
  namespace concepts {
alpar@96
    33
alpar@96
    34
    /// \addtogroup concept
alpar@96
    35
    /// @{
alpar@96
    36
alpar@96
    37
    /// \brief A skeleton structure for representing directed paths in
alpar@96
    38
    /// a digraph.
alpar@96
    39
    ///
alpar@96
    40
    /// A skeleton structure for representing directed paths in a
alpar@209
    41
    /// digraph.
kpeter@157
    42
    /// \tparam _Digraph The digraph type in which the path is.
alpar@96
    43
    ///
alpar@96
    44
    /// In a sense, the path can be treated as a list of arcs. The
alpar@96
    45
    /// lemon path type stores just this list. As a consequence it
alpar@96
    46
    /// cannot enumerate the nodes in the path and the zero length
alpar@96
    47
    /// paths cannot store the source.
alpar@96
    48
    ///
alpar@96
    49
    template <typename _Digraph>
alpar@96
    50
    class Path {
alpar@96
    51
    public:
alpar@96
    52
alpar@96
    53
      /// Type of the underlying digraph.
alpar@96
    54
      typedef _Digraph Digraph;
alpar@96
    55
      /// Arc type of the underlying digraph.
alpar@96
    56
      typedef typename Digraph::Arc Arc;
alpar@96
    57
alpar@96
    58
      class ArcIt;
alpar@96
    59
alpar@96
    60
      /// \brief Default constructor
alpar@96
    61
      Path() {}
alpar@96
    62
alpar@96
    63
      /// \brief Template constructor
alpar@96
    64
      template <typename CPath>
alpar@96
    65
      Path(const CPath& cpath) {}
alpar@96
    66
alpar@96
    67
      /// \brief Template assigment
alpar@96
    68
      template <typename CPath>
kpeter@278
    69
      Path& operator=(const CPath& cpath) {
kpeter@278
    70
        ignore_unused_variable_warning(cpath);
kpeter@278
    71
        return *this;
kpeter@278
    72
      }
alpar@96
    73
alpar@96
    74
      /// Length of the path ie. the number of arcs in the path.
alpar@96
    75
      int length() const { return 0;}
alpar@96
    76
alpar@96
    77
      /// Returns whether the path is empty.
alpar@96
    78
      bool empty() const { return true;}
alpar@96
    79
alpar@96
    80
      /// Resets the path to an empty path.
alpar@96
    81
      void clear() {}
alpar@96
    82
ladanyi@236
    83
      /// \brief LEMON style iterator for path arcs
alpar@96
    84
      ///
alpar@96
    85
      /// This class is used to iterate on the arcs of the paths.
alpar@96
    86
      class ArcIt {
alpar@96
    87
      public:
alpar@209
    88
        /// Default constructor
alpar@209
    89
        ArcIt() {}
alpar@209
    90
        /// Invalid constructor
alpar@209
    91
        ArcIt(Invalid) {}
alpar@209
    92
        /// Constructor for first arc
alpar@209
    93
        ArcIt(const Path &) {}
alpar@96
    94
alpar@96
    95
        /// Conversion to Arc
alpar@209
    96
        operator Arc() const { return INVALID; }
alpar@96
    97
alpar@209
    98
        /// Next arc
alpar@209
    99
        ArcIt& operator++() {return *this;}
alpar@96
   100
alpar@209
   101
        /// Comparison operator
alpar@209
   102
        bool operator==(const ArcIt&) const {return true;}
alpar@209
   103
        /// Comparison operator
alpar@209
   104
        bool operator!=(const ArcIt&) const {return true;}
kpeter@212
   105
        /// Comparison operator
kpeter@212
   106
        bool operator<(const ArcIt&) const {return false;}
alpar@96
   107
alpar@96
   108
      };
alpar@96
   109
alpar@96
   110
      template <typename _Path>
alpar@96
   111
      struct Constraints {
alpar@96
   112
        void constraints() {
alpar@96
   113
          Path<Digraph> pc;
alpar@96
   114
          _Path p, pp(pc);
alpar@96
   115
          int l = p.length();
alpar@96
   116
          int e = p.empty();
alpar@96
   117
          p.clear();
alpar@96
   118
alpar@96
   119
          p = pc;
alpar@96
   120
alpar@96
   121
          typename _Path::ArcIt id, ii(INVALID), i(p);
alpar@96
   122
alpar@96
   123
          ++i;
alpar@96
   124
          typename Digraph::Arc ed = i;
alpar@96
   125
alpar@96
   126
          e = (i == ii);
alpar@96
   127
          e = (i != ii);
alpar@96
   128
          e = (i < ii);
alpar@96
   129
alpar@96
   130
          ignore_unused_variable_warning(l);
alpar@96
   131
          ignore_unused_variable_warning(pp);
alpar@96
   132
          ignore_unused_variable_warning(e);
alpar@96
   133
          ignore_unused_variable_warning(id);
alpar@96
   134
          ignore_unused_variable_warning(ii);
alpar@96
   135
          ignore_unused_variable_warning(ed);
alpar@96
   136
        }
alpar@96
   137
      };
alpar@96
   138
alpar@96
   139
    };
alpar@96
   140
alpar@96
   141
    namespace _path_bits {
alpar@209
   142
alpar@96
   143
      template <typename _Digraph, typename _Path, typename RevPathTag = void>
alpar@96
   144
      struct PathDumperConstraints {
alpar@96
   145
        void constraints() {
alpar@96
   146
          int l = p.length();
alpar@96
   147
          int e = p.empty();
alpar@96
   148
alpar@96
   149
          typename _Path::ArcIt id, i(p);
alpar@96
   150
alpar@96
   151
          ++i;
alpar@96
   152
          typename _Digraph::Arc ed = i;
alpar@96
   153
alpar@96
   154
          e = (i == INVALID);
alpar@96
   155
          e = (i != INVALID);
alpar@96
   156
alpar@96
   157
          ignore_unused_variable_warning(l);
alpar@96
   158
          ignore_unused_variable_warning(e);
alpar@96
   159
          ignore_unused_variable_warning(id);
alpar@96
   160
          ignore_unused_variable_warning(ed);
alpar@96
   161
        }
alpar@96
   162
        _Path& p;
alpar@96
   163
      };
alpar@96
   164
alpar@96
   165
      template <typename _Digraph, typename _Path>
alpar@96
   166
      struct PathDumperConstraints<
alpar@209
   167
        _Digraph, _Path,
alpar@96
   168
        typename enable_if<typename _Path::RevPathTag, void>::type
alpar@96
   169
      > {
alpar@96
   170
        void constraints() {
alpar@96
   171
          int l = p.length();
alpar@96
   172
          int e = p.empty();
alpar@96
   173
alpar@96
   174
          typename _Path::RevArcIt id, i(p);
alpar@96
   175
alpar@96
   176
          ++i;
alpar@96
   177
          typename _Digraph::Arc ed = i;
alpar@96
   178
alpar@96
   179
          e = (i == INVALID);
alpar@96
   180
          e = (i != INVALID);
alpar@96
   181
alpar@96
   182
          ignore_unused_variable_warning(l);
alpar@96
   183
          ignore_unused_variable_warning(e);
alpar@96
   184
          ignore_unused_variable_warning(id);
alpar@96
   185
          ignore_unused_variable_warning(ed);
alpar@96
   186
        }
alpar@96
   187
        _Path& p;
alpar@96
   188
      };
alpar@209
   189
alpar@96
   190
    }
alpar@96
   191
alpar@96
   192
alpar@96
   193
    /// \brief A skeleton structure for path dumpers.
alpar@96
   194
    ///
alpar@96
   195
    /// A skeleton structure for path dumpers. The path dumpers are
alpar@96
   196
    /// the generalization of the paths. The path dumpers can
alpar@96
   197
    /// enumerate the arcs of the path wheter in forward or in
alpar@96
   198
    /// backward order.  In most time these classes are not used
alpar@96
   199
    /// directly rather it used to assign a dumped class to a real
alpar@96
   200
    /// path type.
alpar@96
   201
    ///
alpar@96
   202
    /// The main purpose of this concept is that the shortest path
alpar@96
   203
    /// algorithms can enumerate easily the arcs in reverse order.
alpar@96
   204
    /// If we would like to give back a real path from these
alpar@96
   205
    /// algorithms then we should create a temporarly path object. In
ladanyi@236
   206
    /// LEMON such algorithms gives back a path dumper what can
alpar@96
   207
    /// assigned to a real path and the dumpers can be implemented as
alpar@96
   208
    /// an adaptor class to the predecessor map.
alpar@96
   209
kpeter@157
   210
    /// \tparam _Digraph  The digraph type in which the path is.
alpar@96
   211
    ///
alpar@96
   212
    /// The paths can be constructed from any path type by a
alpar@96
   213
    /// template constructor or a template assignment operator.
alpar@209
   214
    ///
alpar@96
   215
    template <typename _Digraph>
alpar@96
   216
    class PathDumper {
alpar@96
   217
    public:
alpar@96
   218
alpar@96
   219
      /// Type of the underlying digraph.
alpar@96
   220
      typedef _Digraph Digraph;
alpar@96
   221
      /// Arc type of the underlying digraph.
alpar@96
   222
      typedef typename Digraph::Arc Arc;
alpar@96
   223
alpar@96
   224
      /// Length of the path ie. the number of arcs in the path.
alpar@96
   225
      int length() const { return 0;}
alpar@96
   226
alpar@96
   227
      /// Returns whether the path is empty.
alpar@96
   228
      bool empty() const { return true;}
alpar@96
   229
alpar@96
   230
      /// \brief Forward or reverse dumping
alpar@96
   231
      ///
alpar@96
   232
      /// If the RevPathTag is defined and true then reverse dumping
alpar@96
   233
      /// is provided in the path dumper. In this case instead of the
alpar@96
   234
      /// ArcIt the RevArcIt iterator should be implemented in the
alpar@96
   235
      /// dumper.
alpar@96
   236
      typedef False RevPathTag;
alpar@96
   237
ladanyi@236
   238
      /// \brief LEMON style iterator for path arcs
alpar@96
   239
      ///
alpar@96
   240
      /// This class is used to iterate on the arcs of the paths.
alpar@96
   241
      class ArcIt {
alpar@96
   242
      public:
alpar@209
   243
        /// Default constructor
alpar@209
   244
        ArcIt() {}
alpar@209
   245
        /// Invalid constructor
alpar@209
   246
        ArcIt(Invalid) {}
alpar@209
   247
        /// Constructor for first arc
alpar@209
   248
        ArcIt(const PathDumper&) {}
alpar@96
   249
alpar@96
   250
        /// Conversion to Arc
alpar@209
   251
        operator Arc() const { return INVALID; }
alpar@96
   252
alpar@209
   253
        /// Next arc
alpar@209
   254
        ArcIt& operator++() {return *this;}
alpar@96
   255
alpar@209
   256
        /// Comparison operator
alpar@209
   257
        bool operator==(const ArcIt&) const {return true;}
alpar@209
   258
        /// Comparison operator
alpar@209
   259
        bool operator!=(const ArcIt&) const {return true;}
kpeter@212
   260
        /// Comparison operator
kpeter@212
   261
        bool operator<(const ArcIt&) const {return false;}
alpar@96
   262
alpar@96
   263
      };
alpar@96
   264
ladanyi@236
   265
      /// \brief LEMON style iterator for path arcs
alpar@96
   266
      ///
alpar@96
   267
      /// This class is used to iterate on the arcs of the paths in
alpar@96
   268
      /// reverse direction.
alpar@96
   269
      class RevArcIt {
alpar@96
   270
      public:
alpar@209
   271
        /// Default constructor
alpar@209
   272
        RevArcIt() {}
alpar@209
   273
        /// Invalid constructor
alpar@209
   274
        RevArcIt(Invalid) {}
alpar@209
   275
        /// Constructor for first arc
alpar@209
   276
        RevArcIt(const PathDumper &) {}
alpar@96
   277
alpar@96
   278
        /// Conversion to Arc
alpar@209
   279
        operator Arc() const { return INVALID; }
alpar@96
   280
alpar@209
   281
        /// Next arc
alpar@209
   282
        RevArcIt& operator++() {return *this;}
alpar@96
   283
alpar@209
   284
        /// Comparison operator
alpar@209
   285
        bool operator==(const RevArcIt&) const {return true;}
alpar@209
   286
        /// Comparison operator
alpar@209
   287
        bool operator!=(const RevArcIt&) const {return true;}
kpeter@212
   288
        /// Comparison operator
kpeter@212
   289
        bool operator<(const RevArcIt&) const {return false;}
alpar@96
   290
alpar@96
   291
      };
alpar@96
   292
alpar@96
   293
      template <typename _Path>
alpar@96
   294
      struct Constraints {
alpar@96
   295
        void constraints() {
alpar@96
   296
          function_requires<_path_bits::
alpar@96
   297
            PathDumperConstraints<Digraph, _Path> >();
alpar@96
   298
        }
alpar@96
   299
      };
alpar@96
   300
alpar@96
   301
    };
alpar@96
   302
alpar@96
   303
alpar@96
   304
    ///@}
alpar@96
   305
  }
alpar@96
   306
alpar@96
   307
} // namespace lemon
alpar@96
   308
alpar@96
   309
#endif // LEMON_CONCEPT_PATH_H